* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Archivo", sans-serif;
  overflow-x: hidden !important;
  background: #1c1c1c;
}
html,
body {
  overflow-x: hidden !important;
}
/* navbar-styling */
.navbar {
  max-width: 100%;
  height: 80px;
  background: #15151599;
  border-radius: 150px;
  padding-left: 40px;
  padding-right: 20px;
  backdrop-filter: blur(50px);
  border: 1px solid #363636;
}
.companyLogo img {
  max-width: 100%;
  height: auto;
}
.nav-link {
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-right: 25px;
  color: #ffffff;
  transition: color 0.3s ease; /* smooth animation */
}
.nav-link:hover {
  color: #00bfff !important;
  font-weight: 600;
}
.nav-lin,
.active {
  color: #00bfff !important;
  font-weight: 600;
}
.navContactUs button {
  width: 191px;
  height: 50px;
  background: #007ea7;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}
.navContactUs button img {
  max-width: 100%;
  height: auto;
  margin-left: 10px;
}
.mainHeroSection {
  max-width: 100%;
  height: 100vh;
  background: #1c1c1c;
  padding-top: 30px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}
.hero-bg-svg {
  position: absolute;
  inset: 0; /* top:0; left:0; right:0; bottom:0 */
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-bg-svg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6; /* Adjust if needed */
}
.heroMainText h1 {
  font-weight: 800;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: -2px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffffff;
}
.heroMainText span {
  color: #007ea7;
}
.subTitle h3 {
  font-weight: 600;
  font-size: 28.83px;
  line-height: 36px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 0;
}
.subTitle {
  position: relative;
  display: inline-block;
  margin-top: 30px;
}

.subTitle::after {
  content: "";
  position: absolute;
  left: calc(100% + 30px); /* 30px to the right of the text */
  top: 50%;
  transform: translateY(-50%);
  width: 300px; /* line size */
  height: 1px; /* line thickness */
  background: #999999;
}
.heroContent {
  margin-top: 99px;
}
.serviceCircle {
  width: 76px;
  height: 76px;
  background: #007ea7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.serviceCircle img {
  max-width: 100%;
  height: auto;
}
.serviceTag {
  display: inline-block;
  border: 1px solid #ffffff33;
  background: #1a1a1a99;
  backdrop-filter: blur(74px);
  border-radius: 80px;
  padding: 20px 40px;
}
.serviceTag h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 0;
}
/* Wrapper fixed at bottom */
.heroServiceRows {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* each row */
.heroServiceTagsWrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 5px 0;
}

/* baseline style */
.tags-track {
  display: flex;
  align-items: center;
  gap: 0px;
  width: max-content;
  animation: slideRTL 30s linear infinite; /* default right → left */
}

/* reverse direction for second row */
.tags-track.reverse {
  animation: slideLTR 30s linear infinite; /* left → right */
}

.tag-item {
  display: flex;
  align-items: center;
  gap: 0px;
}

/* Animations */
@keyframes slideRTL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Right → Left */
  }
}

@keyframes slideLTR {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0); /* Left → Right */
  }
}

/* Optional: different speeds for natural effect */
.row-1 .tags-track {
  animation-duration: 25s;
}

.row-2 .tags-track.reverse {
  animation-duration: 25s;
}
.row-2 {
  margin-top: 26px;
}
.heroStar img {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 40%;
}
.hero-bg-side svg {
  position: absolute;
  left: 0;
  top: 0;
}
/* IndexPageAbout-Styling */
.indexAboutFull {
  width: 100%;
  height: auto;
  background-color: #1c1c1c;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
.mainAboutImgWrapper img {
  max-width: 100%;
  height: auto;
}
.mainAboutContent h2 {
  font-weight: 600;
  font-size: 50px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.mainAboutContent h2 span {
  color: #007ea7;
}
/* Line after the heading */
.mainAboutContent h2::after {
  content: "";
  position: absolute;
  left: calc(100% + 30px); /* 30px right of text */
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 1px;
  background: #999999;
}
.mainAboutContent p {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #999999;
  margin-bottom: 5px;
}

.aboutShadow svg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.aboutShadowRight {
  position: absolute;
  bottom: 0;
  right: 0;
}
.aboutSectionButton button {
  width: 189px;
  height: 50px;
  background: #007ea7;
  border-radius: 50px;
  border: none;
  color: #ffffff;
  margin-top: 20px;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}
.aboutSectionButton button img {
  max-width: 100%;
  height: auto;
  margin-left: 10px;
}
.companyCoreFull {
  width: 100%;
  height: auto;
  background: #1c1c1c;
  padding-top: 50px;
  padding-bottom: 50px;
}
.corePointsWrapper {
  max-width: 320px;
  height: 315px;
  border-radius: 30px;
  background: #1a1a1a;
  padding-left: 25px;
  padding-top: 40px;
}
.corePointsWrapper img {
  max-width: 100%;
  height: auto;
}
.corePointsWrapper h6 {
  font-weight: 700;
  font-size: 26px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #14dfed;
  margin-top: 22px;
}
.corePointsWrapper p {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0%;
  color: #777777;
}
.corePointsWrapper {
  max-width: 320px;
  height: 315px;
  border-radius: 30px;
  background: #1a1a1a;
  padding-left: 25px;
  padding-top: 40px;
  transition: all 0.4s ease;
  border: 1px solid #2b2b2b;
  cursor: pointer;
}

.corePointsWrapper:hover {
  transform: translateY(-10px);
  background: #222;
  border-color: #14dfed;
  box-shadow: 0 15px 35px rgba(20, 223, 237, 0.2);
}

.corePointsWrapper img {
  transition: transform 0.4s ease;
}

.corePointsWrapper:hover img {
  transform: translateY(-10px) scale(1.1);
}
.serviceSectionFull {
  max-width: 100%;
  height: auto;
  background: #007ea71a;
  padding-top: 50px;
  padding-bottom: 50px;
}
.mainServiceTitleRow h2 {
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-size: 50px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* Line after title */
.mainServiceTitleRow h2::after {
  content: "";
  position: absolute;
  left: calc(100% + 30px); /* 30px to the right of text */
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 1px;
  background: #999999; /* same line color from previous sections */
}
.mainServiceTitleRow span {
  color: #14dfed;
}
.viewAllBtn button {
  width: 165px;
  height: 50px;
  background: #007ea7;
  border: none;
  border-radius: 50px;
  font-family: Archivo;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
}
.viewAllBtn button img {
  max-width: 100%;
  height: auto;
  margin-left: 10px;
}
.mainServiceTitleRow {
  display: flex;
  justify-content: space-between;
}
.serviceCardWrapper {
  position: relative;
  max-width: 432px;
  height: 395px;
  background: linear-gradient(
    120.79deg,
    #007ea7 -49.01%,
    rgba(0, 126, 167, 0) 13.65%
  );
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;

  /* Smoother Transition */
  transition: background 12s ease-in-out, transform 0.6s ease;
}

/* Hover Effect Gradient */
.serviceCardWrapper:hover {
  background: linear-gradient(
    140.79deg,
    #00b4d8 -10%,
    rgba(0, 180, 216, 0.2) 35%,
    rgba(0, 126, 167, 0.2) 100%
  );

  /* Optional: subtle scale for smoother feeling */
  transform: translateY(-3px);
}

.serviceCardWrapper:hover .cardTitle p {
  color: white;
}

.cardArrow {
  position: absolute;
  left: 20px;
  bottom: 20px;
}
.cardArrow img {
  max-width: 100%;
  height: auto;
}

/* Multi-gradient border */
.serviceCardWrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  /* Your two gradients combined */
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.09)
    ),
    linear-gradient(117.89deg, #007ea7 0%, rgba(0, 126, 167, 0) 24%);

  /* Turn background into border */
  padding: 1px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.cardImgWrapper img {
  max-width: 100%;
  height: 355px;
  border-radius: 10px;
}

.cardTitle h5 {
  font-weight: 500;
  font-size: 26px;
  line-height: 34px;
  letter-spacing: 0%;
  color: #ffffff;
}
.cardTitle p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #999999;
}
.serviceRow2 {
  margin-top: 20px;
}
.portFolioSection {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 48px;
  z-index: 1; /* important */
}
.portFolioTop {
  padding-bottom: 20px;
}

/* SVG background behind everything */
.portFolioBg {
  position: absolute;
  inset: 0;
  z-index: -1 !important; /* force behind */
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none; /* fix blocking issues */
}

.portFolioBg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  preserveaspectratio: none; /* SUPER important */
}
.portFolioTitleLeft h1 {
  font-weight: 700;
  font-style: Bold;
  font-size: 160px;
  line-height: 120%;
  letter-spacing: -4%;
  text-transform: uppercase;
  color: #2d2d2d;
  text-align: center;
}
.portFolioTitleRight h3 {
  font-weight: 600;
  font-size: 50px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
  display: inline-block;
  position: relative;

  z-index: 5;
}
.portFolioTitleRight span {
  color: #007ea7;
}

.portFolioTitleRight {
  position: relative;
  display: inline-block;
}

/* underline O → F */
.portFolioTitleRight h3::after {
  content: "";
  position: absolute;
  left: 0; /* starts under the O */
  bottom: 0px; /* give some space */
  height: 1px;
  width: calc(100% - 130px); /* adjust until ends at F */
  background: #999999;
}
.portFolioWrapper img {
  width: 100%;
  height: auto;
}
.portFolioWrapper {
  position: relative;
}
.portFolioContent {
  position: absolute;
  max-width: 90%;
  width: 340px;
  height: 90px;
  background: #ffffff1a;
  backdrop-filter: blur(54px);
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  cursor: pointer;
}
.portFolioContent h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 0;
}
.portFolioContent img {
  max-width: 21px;
  height: 21px;
}
.halfCircle {
  position: absolute;
  width: 128px;
  height: 130px;
  border-radius: 50%;
  background: #007ea7;
  top: 65px;
  right: -65px;
}
.sucessTagBig {
  width: 100%;
  height: auto;
  background: linear-gradient(
    55.25deg,
    #000066 -2.56%,
    #13c9f2 41.17%,
    #66ffcc 86.69%
  );
  border-radius: 50px;
  position: relative;
  overflow: hidden; /* REQUIRED for SVG clipping */
  padding-top: 62px;
  padding-left: 70px;
  padding-bottom: 36px;
  margin-top: 50px;
  margin-bottom: 50px;
}

/* SVG background wrapper */
.sucessBgSv {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* behind content */
}

.sucessBgSv svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.8; /* optional */
  z-index: -1;
}

/* All content should stay above */
.contentWrapper {
  position: relative;
  z-index: 5;
}

.successTagLeft h4 {
  font-weight: 200;
  font-size: 90px;
  line-height: 150%;
  letter-spacing: 0%;

  /* GRADIENT TEXT FIX */
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.successTagRight img {
  max-width: 100%;
  height: auto;
}
.successTagRight {
  z-index: 0;
}
.weServedInustriesSection {
  max-width: 100%;
  height: 480px;
  background: #007ea71a;
}
.industriesLeft h2 {
  font-weight: 600;
  font-size: 50px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
}
.industriesLeft h2 span {
  color: #007ea7;
}
.industriesLeft h2 {
  position: relative;
  display: inline-block;
}

.industriesLeft h2::after {
  content: "";
  position: absolute;
  bottom: -8px; /* adjust spacing */
  left: 0;
  width: 300px; /* <<< your exact width */
  height: 1px; /* underline thickness */
  background: #999999;
  border-radius: 1px;
}
.industrieWrapper {
  max-width: 477px;
  height: 169px;
  background: #1a1a1a;
  border-radius: 30px;
  border: 1px solid #007ea74d;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  padding: 55px 30px 55px 30px;
}
.weServedInustriesSection {
  padding-top: 50px;
}
.industriesRight {
  height: 430px; /* PERFECT value */
  overflow-y: auto;
  position: relative;

  scrollbar-width: none;
  -ms-overflow-style: none;
}
.industriesRight::-webkit-scrollbar {
  display: none;
}

/* REMOVE bootstrap default spacing */
.industriesRight .row {
  margin: 0 !important;
}

/* STICK ALL ROWS TO TOP TO COVER COMPLETELY */
.stickyRow {
  position: sticky;
  top: 0;
  z-index: 1;
}

/* STACK ORDER */
.stickyRow:nth-child(1) {
  z-index: 1;
}
.stickyRow:nth-child(2) {
  z-index: 2;
}
.stickyRow:nth-child(3) {
  z-index: 3;
}
.stickyRow:nth-child(4) {
  z-index: 4;
}

/* CARD HEIGHT + SPACING */
.industrieWrapper {
}
.industrieWrapper img {
  width: 60px;
  height: 60px;
}

.industrieWrapper h6 {
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 28.8px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #007ea7;
}
.clientSaySection {
  max-width: 100%;
  height: 395px;
  background: #007ea7;
  padding-top: 77px;
}
.qsTagsvg {
  position: absolute;
  top: 30px;
  right: 30px;
}
.clientSayTitle h3 {
  font-weight: 600;
  font-size: 50px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
  text-align: center;
}
.clientSayTitle h3 .underline {
  position: relative;
  display: inline-block;
}

.clientSayTitle h3 .underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px; /* distance from text */
  width: 100%;
  height: 1px;
  background: #ffffff;
  border-radius: 2px;
}
.clientSaySection {
  max-width: 100%;
  background: #007ea7;
}
.clientSaySectionTop h2 {
  font-weight: 600;
  font-size: 50px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
  text-align: center;
}
/* Section container (optional style) */

/* Title */
.clientSaySectionTop h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}
.carouselWrapper {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0;

  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carouselWrapper::-webkit-scrollbar {
  display: none;
}

.carouselCards {
  flex: 0 0 75%;
  max-width: 1080px;
  height: 365px;
  background: #141414;
  border-radius: 30px;
  scroll-snap-align: center;

  opacity: 0.35;
  transform: scale(0.85);
  transition: all 0.35s ease;
  color: #fff;
}

.carouselCards.active {
  background: #000;
  opacity: 1;
  transform: scale(1);
}
.clientProfileimg {
  width: 208px;
  height: 208px;
  border-radius: 50%;
  overflow: hidden; /* IMPORTANT – crops the image perfectly */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0; /* optional placeholder background */
}

.clientProfileimg img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps face centered */
  border-radius: 50%; /* extra safety */
}
.clientRating img {
  max-width: 100%;
  height: auto;
  margin-left: 7px;
}
.clientSayMain p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #999999;
  margin-top: 16px;
}
.clientName h6 {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff;
}
.clinetMain {
  padding: 80px 30px;
}
.clientFeedbackSection {
  padding-top: 80px;
}

.clientSaySectionTop h2 {
  font-weight: 600;
  font-size: 50px;
  color: #fff;
  text-align: center;
}

/* underline span */
.clientSaySectionTop h2 .uline {
  position: relative;
  display: inline-block;
  padding-bottom: 2px; /* optional, adjust underline distance */
}

.clientSaySectionTop h2 .uline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; /* UNDERLINE directly under text */
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}
.clientLogoSectionMain {
  margin-top: 220px;
  position: relative;
  overflow-y: hidden;
  padding-bottom: 35px;
}
.clientSvgBgLeft {
  position: absolute;
  bottom: 0;
  left: 0;
}
.clientSvgBgRight {
  position: absolute;
  top: 0;
  right: 0;
}
.clientLogoTop h2 {
  font-weight: 600;
  font-size: 50px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
}
.clientLogoTop h2 span {
  color: #007ea7;
}
.clientLogoTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.clientLogoTop h2 {
  position: relative;
  font-size: 50px;
  font-weight: 600;
  color: #ffffff;
  display: inline-block;
  margin: 0;
}

/* 300px line after text */
.clientLogoTop h2::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%; /* start right after text */
  margin-left: 15px; /* spacing between text and line */

  width: 300px; /* your required line width */
  height: 1px;
  background: #ffffff;
}
.clientSaySectionTopMobile {
  display: none !important;
}
.clientLogoSectionMain {
  padding-top: 35px;
}
.clientLogoWrapper {
  max-width: 320px;
  height: auto;
  border: 1px solid #9999994d;
  padding: 20px 24.5px;
  background: #1c1c1c;
  border-radius: 20px;
}
.clientLogoWrapper img {
  max-width: 100%;
  height: auto;
}
.clientRow {
  margin-top: 20px;
}
.clientLogoTop {
  margin-bottom: 30px;
}
.blogSectionTop h2 {
  position: relative;
  font-size: 50px;
  font-weight: 600;
  color: #ffffff;
  display: inline-block;
  margin: 0;
}
.blogSectionTop h2 span {
  color: #007ea7;
}
/* 300px line after text */
.blogSectionTop h2::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%; /* start right after text */
  margin-left: 15px; /* spacing between text and line */

  width: 300px; /* your required line width */
  height: 1px;
  background: #ffffff;
}
.blogSectionTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 37px;
}
.blogSection {
  padding-top: 50px;
  padding-bottom: 50px;
}
.blogWrapper {
  max-width: 100%;
  height: auto;
  background: #007ea71a;
  border-radius: 20px;
  padding-bottom: 10px;
  cursor: pointer;
}
.blogImg img {
  max-width: 100%;
  width: 100%;
  height: 300px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
.postedOn {
  max-width: 106px;
  height: 32px;
  border: 1px solid #ffffff66;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.postedOn img {
  max-width: 100%;
  height: auto;
  margin-right: 6px;
}
.postedOn span {
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ffffff;
}
.blogTitle h3 {
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #14dfed;
  margin-top: 9px;
  margin-bottom: 6px;
}
.blogData p {
  font-weight: 400;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
}
.blogContentMain {
  padding-left: 14px;
  padding-top: 18px;
  padding-right: 14px;
}
.mainContactSectionTop h2 {
  font-weight: 600;
  font-size: 50px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
}
.mainContactSectionTop h2 span {
  color: #007ea7;
}

.mainContactSectionTop {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mainContactSectionTop h2 {
  position: relative;
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  display: inline-block;
  margin: 0;
  margin-bottom: 20px;
}

/* 300px line after text */
.mainContactSectionTop h2::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%; /* place line after the text */
  margin-left: 15px; /* spacing */
  width: 300px;
  height: 1px;
  background: #ffffff;
}
.mainContactDetailsLeft {
  max-width: 100%;
  height: auto;
  height: 534px;

  background: #141414;
  border-radius: 30px;
}
.mainContactDetailsRight {
  max-width: 100%;
  height: 534px;
  background: #141414;
  border-radius: 30px;
}
.locationWrapper p,
.numberWrapper p {
  font-weight: 400;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #e1e1e1;
  margin-bottom: 60px;
}
.mapLogo img,
.phoneLogo img,
.emailLogo img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.mapLogo,
.phoneLogo,
.emailLogo {
  display: flex;
  justify-content: center;
}
.mainContactDetailsLeft {
  padding-top: 51px;
  padding-bottom: 42px;
}
.emailWrapper p {
  font-weight: 400;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #e1e1e1;
}
.emailWrapper a,.numberWrapper a{
  color: #e1e1e1;
}
.form-label {
  font-weight: 400;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 5px;
  margin-top: 20px;
}
.form-control,
.form-select {
  background: #1a1a1a;
  border: 1px solid #262626;
  height: 54px;
  border-radius: 40px;
}
.messageInput {
  height: 150px;
  padding: 15px;
}
.form-control::placeholder {
  color: #999; /* placeholder text color */
  font-size: 14px; /* placeholder size */
  opacity: 1; /* must set this to override Bootstrap */
  letter-spacing: 0.5px;
}
/* Base select styling */
.serviceSelect {
  color: #fff; /* normal selected text color */
  background-color: #141414; /* your dark background */
  border-radius: 8px;
}

/* Placeholder style (default option) */
.serviceSelect option[disabled] {
  color: #888; /* grey placeholder text */
}

/* When the select is showing the placeholder */
.serviceSelect.placeholder {
  color: #888 !important; /* grey */
}
/* Base select style */
.serviceSelect {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 10px 15px;
  transition: 0.3s ease;
  border-radius: 40px;
}

/* Placeholder option */
.serviceSelect.placeholder {
  color: #888 !important;
}

/* Disabled option (placeholder in dropdown list) */
.serviceSelect option[disabled] {
  color: #777;
}

/* Focus style */
.serviceSelect:focus {
  border-color: #007ea7 !important; /* blue border on focus */
  box-shadow: 0 0 10px rgba(0, 126, 167, 0.6) !important;
  outline: none !important;
  color: #fff;
}
.form-control:focus {
  border-color: #007ea7 !important; /* blue border on focus */
  box-shadow: 0 0 10px rgba(0, 126, 167, 0.6) !important;
  outline: none !important;
  color: #fff;
  background: #1a1a1a;
}
.mainFormWrapper {
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
}
.mainContactButton {
  width: 100%;
  max-width: 100%;
  height: 50px;
  background: #007ea7;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 40px;
}
.mainContactButton img {
  max-width: 100%;
  height: auto;
  margin-left: 10px;
}
.mainContactSection {
  padding-top: 50px;
  padding-bottom: 20px;
}
.footerTop {
  max-width: 100%;
  height: 225px;
  border-top: 1px solid #262626;
  margin-top: 30px;
  position: relative;
  z-index: 0;
}
.footerSvgBgLeft {
  position: absolute;
  bottom: 0;
  left: 0;
}
.footerSvgBgLeft svg {
  z-index: -1;
}
.footerSvgBgRight {
  position: absolute;
  bottom: 0;
  right: 0;
}
.footerTopText h2 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 48px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #ffffff;
  z-index: 10;
  margin-bottom: 14px;
}
.footerTopContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footerTopText h2,
.footerTopText p {
  position: relative;
  z-index: 5;
}
.footerTopText p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #999999;
}
.footerBtn button {
  width: 191px;
  height: 50px;
  background: #007ea7;
  border-radius: 50px;
  border: none;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 5;
}
.footerBtn button img {
  max-width: 100%;
  height: auto;
  margin-left: 10px;
}
.footerTopText {
  margin-top: 40px;
}
.footerBottom {
  max-width: 100%;
  height: 335px;
  background: #1a1a1a;

  position: relative;
}
.footerLogo img {
  max-width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.footerSocialIcons {
  display: flex;
  gap: 12px;
}
.IconWrapper {
  width: 34px;
  height: 34px;
  border: 1px solid #007ea7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.textBig h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 178.47px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: -4%;
  text-transform: uppercase;
  position: absolute;
  left: -40px;
  top: 129px;
  color: #9999990d;
}
.footerMainLeft {
  padding-top: 50px;
  padding-left: 50px;
}
.quickLinkSection .Title h6 {
  font-weight: 600;
  font-size: 17.44px;
  line-height: 21.6px;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 20px;
}
.quickLinkSection ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #ffffff;
  text-decoration: none;
}
.quickLinkSection ul li {
  list-style: none;
  margin-bottom: 14px;
}
.quickLinkSection ul {
  padding-left: 0;
}
.footerAdressWrapper .Title h6 {
  font-weight: 600;
  font-size: 17.44px;
  line-height: 21.6px;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 20px;
}
.footerAdressWrapper p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #ffffff;
}
.quickLinkSection,
.footerAdressWrapper {
  margin-top: 50px;
}
.footerAdressWrapper a {
  color: #007ea7;
  text-decoration: none;
}
.footerEnd {
  max-width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 0px;
}
.footerEnd p {
  font-weight: 400;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 27.2px;
  letter-spacing: 0%;
  color: #999999;
}
.footerEnd p span {
  color: #007ea7;
}
/* ABOUT_PAGE-STYLING */
.aboutHeroSection {
  max-width: 100%;
  height: 50vh;
  background: linear-gradient(rgba(21, 21, 21, 0.5), rgba(21, 21, 21, 0.5)),
    url("../assets/backgroundSVG/about-hereo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 30px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}
.heroTitle h1 {
  font-weight: 600;
  font-size: 70px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #e1e1e1;
  position: absolute;
  bottom: 62px;
  left: 50%;
  transform: translateX(-50%);
}
.aboutPageAbout {
  max-width: 100%;
  height: 500px;
}
.aboutPageAbout p {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #999999;
  margin-bottom: 10px;
}
.aboutMainStart {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
.missioVisionWrapper {
  background: #1a1a1a;
  margin-top: 50px;
}
.missioVisionWrapper {
  background: #1a1a1a;
  height: 270px;
  border-radius: 12px;
}
.missioVisionWrapperInner {
  border: 1px solid #262626;
  box-shadow: 0px 0px 0px 10px #191919;
  height: 266px;
  border-radius: 12px;
}
.missionTitle {
  display: flex;
  align-items: center;
}
.missionTitle h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 0;
  margin-left: 14px;
}
.missionWrapper p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #999999;
  margin-top: 16px;
}

.missionWrapper {
  padding-top: 50px;
  padding-left: 50px !important;
}
.leftCol {
  position: relative; /* required */
}

.leftCol::after {
  content: "";
  position: absolute;
  top: 50%; /* center vertically */
  right: 0; /* place border on the right side */
  transform: translateY(-36%);
  width: 1px;
  height: 80%; /* adjust line size as you want */
  background: #333;
}
.visionTitle {
  display: flex;
  align-items: center;
}
.visionTitle h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 0;
  margin-left: 14px;
}
.visionWrapper p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #999999;
  margin-top: 16px;
}
.visionWrapper {
  padding-top: 50px;
  padding-left: 50px !important;
}
.whyChooseSection {
  max-width: 100%;
  height: auto;
  background: #007ea71a;
  padding-top: 50px;
  padding-bottom: 50px;
}
.whyChooseLeft .Title h2 {
  font-weight: 600;
  font-size: 50px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
}
.whyChooseLeft .Title h2 .colourSpan {
  color: #007ea7;
}
.Title h2 {
  position: relative;
  display: inline-block;
}

.Title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px; /* adjust spacing */
  width: 70%; /* <-- controls underline length */
  height: 1px;
  background: #fff;
  border-radius: 2px;
}
.whyChooseLeft .paragraph p {
  font-weight: 400;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0%;
  color: #ffffff;
  margin-top: 14px;
  margin-bottom: 62px;
}
.whyChooseImg-1 img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.whyChooseImg-2 img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  margin-top: 42px;
}
.whyChoosePoints img {
  max-width: 100%;
  height: auto;
}
.whyChoosePoints h5 {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #007ea7;
  margin-top: 8px;
  margin-bottom: 8px;
}
.whyChoosePoints p {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #ffffff;
}

.whyChooseLeft {
  padding-right: 11px;
}
.whyChooseRight {
  padding-left: 11px;
}
.whyChooseRow {
  margin-top: 50px;
}
.aboutContactSection {
  margin-top: 200px;
}
/* SERVICE_PAGE-styling */
.serviceHeroSection {
  max-width: 100%;
  height: 50vh;
  background: linear-gradient(rgba(21, 21, 21, 0.5), rgba(21, 21, 21, 0.5)),
    url("../assets/backgroundSVG/service-hereo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 30px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}
.serviceSectionService {
  max-width: 100%;
  height: auto;
  padding-top: 50px;
  padding-bottom: 20px;
}
.serviceOneHeroSection {
  max-width: 100%;
  height: 50vh;
  background: linear-gradient(rgba(21, 21, 21, 0.5), rgba(21, 21, 21, 0.5)),
    url("../assets/backgroundSVG/service-1_hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 30px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}
.careersHeroSection {
  max-width: 100%;
  height: 50vh;
  background: linear-gradient(rgba(21, 21, 21, 0.5), rgba(21, 21, 21, 0.5)),
    url("../assets/backgroundSVG/careers-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 30px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}
.positionWrapper {
  position: relative;
  max-width: 100%;
  height: 181px;
  border-radius: 20px;
  overflow: hidden;
  padding-left: 20px;
  padding-top: 20px;
  cursor: pointer;

  transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.positionWrapper:hover {
  box-shadow: 0 0 15px rgba(0, 126, 167, 0.6);
  transform: translateY(-1px); /* small lift for a professional hover feel */
}

/* Gradient Border (same as before) */
.positionWrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.09)
    ),
    linear-gradient(117.89deg, #14dfed 0%, rgba(20, 223, 237, 0) 24%);

  padding: 1px;

  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Glow ONLY top-left */
.positionWrapper::after {
  content: "";
  position: absolute;
  top: -10px; /* place glow slightly outside */
  left: -10px;
  width: 80px; /* glow size */
  height: 80px;
  background: radial-gradient(
    circle at top left,
    rgba(20, 223, 237, 0.2),
    rgba(20, 223, 237, 0) 80%
  );
  filter: blur(12px); /* soft spread */
  pointer-events: none;
  z-index: -1; /* behind card */
}

.positionTitle h5 {
  font-weight: 500;
  font-size: 22px;
  line-height: 34px;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 6px;
}
.yearWrapper {
  width: 182px;
  height: 37px;
  border: 1px solid #999999;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeWrapper {
  width: 127px;
  height: 37px;
  border: 1px solid #999999;
  border-radius: 50px;
  display: flex;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yearAndTime {
  display: flex;
  gap: 6px;
}
.yearWrapper h6 {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #999999;
  margin-bottom: 0;
  margin-left: 10px;
}
.timeWrapper h6 {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #999999;
  margin-bottom: 0;
  margin-left: 10px;
}
.applyBtn button {
  width: 188px;
  height: 50px;
  border: 1px solid #007ea7;
  border: 1px solid #007ea7;
  background: transparent;
  border-radius: 50px;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #007ea7;
  margin-top: 14px;
}
.applyBtn button img {
  max-width: 100%;
  height: auto;
}

/* MODAL_STYLING */
/* Overlay */
.jobModalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow-y: auto !important; /* Enables internal scrolling */
  height: auto;
}

/* Modal Box */
.jobModal {
  width: 880px;
  max-width: 100%;
 
  background: #111;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #14dfed33;
  animation: fadeIn 0.3s ease;
}

/* Header */
.modalHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modalHeader h3 {
  color: #fff;
  font-weight: 600;
  font-size: 26px;
}

.modalHeader .closeModal {
  background: none;
  border: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* Text */
.subText {
  color: #aaa;
  margin-top: 5px;
  margin-bottom: 25px;
}

/* Form */
.modalForm label {
  color: #fff;
  font-size: 14px;
}

.modalForm input {
  width: 100%;
  height: 50px;
  padding: 10px 15px;
  border-radius: 40px;
  border: 1px solid #222;
  background: #1a1a1a;
  color: #fff;
  margin-bottom: 32px;
}

.modalForm input:focus {
  border-color: #14dfed;
  outline: none;
}

/* Submit Button */
.modalSubmit button {
  width: 100%;
  height: 50px;
  background: #007ea7;
  border-radius: 50px;
  border: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  cursor: pointer;
  color: #ffffff;
}
.modalSubmit button img {
  max-width: 100%;
  height: auto;
  margin-left: 10px;
}
/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.modalHeader h3 {
  font-weight: 500;
  font-style: Medium;
  font-size: 40px;
  line-height: 34px;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 0;
}
.subText {
  font-weight: 400;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #999999;
  margin-top: 14px;
}
.closeModal {
  font-size: 40px !important;
  color: #007ea7 !important;
}
.modalForm label {
  font-weight: 400;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #ffffff;
  margin-bottom: 8px;
}
.customFileWrapper {
  position: relative;
  width: 100%;
  height: 50px;
  background: #1a1a1a !important;
  border-radius: 40px;
  border: 1px solid #222;
  display: flex;
  align-items: center;
  padding: 0 20px;
  cursor: pointer;
  margin-bottom: 24px;
  transition: 0.3s ease;
}

/* Hidden file input */
.customFileWrapper input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

/* Focus Effect on WRAPPER using :focus-within */
.customFileWrapper:focus-within {
  border-color: #007ea7 !important;
  box-shadow: 0 0 10px rgba(0, 126, 167, 0.6) !important;
}
.customFileWrapper:focus-within #resumeText {
  color: #14dfed; /* teal accent on focus */
}
/* hide default input */
.customFileWrapper input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

/* Placeholder / filename text */
#resumeText {
  font-weight: 400;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: 0%;
  color: #666666;
  pointer-events: none;
  position: absolute;
  left: 20px;
  right: 50px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Upload icon */
.uploadIcon {
  width: 20px;
  position: absolute;
  right: 20px;
  pointer-events: none;
}

/* Placeholder styling for all modal inputs */
.modalForm input::placeholder {
  font-weight: 400;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: 0%;
  color: #666666;
}

/* On focus → placeholder fade */
.modalForm input:focus::placeholder {
  color: #14dfed; /* teal accent on focus */
  opacity: 0.8;
}

/* Input focus style */
.modalForm input:focus {
  border-color: #007ea7 !important; /* blue border on focus */
  box-shadow: 0 0 10px rgba(0, 126, 167, 0.6) !important;
  outline: none !important;
}

.customFileWrapper {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 50px;
  background: #1a1a1a;
  border-radius: 15px;
  border: 1px solid #333;
  cursor: pointer;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.customFileWrapper input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

#resumeText {
  position: absolute;
  color: #aaa;
}

.filePreview {
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: none;
  border-radius: 5px;
  background: #000;
}

.uploadIcon {
  position: absolute;
  right: 15px;
  width: 20px;
}
.positionRow {
  margin-top: 50px;
}
.positionRow2 {
  margin-top: 26px;
}
.footerWrapperCareers {
  margin-top: 97px;
}
/* Loader spinner */
.loader {
  border: 5px solid #ffffff30;
  border-top: 3px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 0.7s linear infinite;
  display: none; /* hidden initially */
}
.loader-black {
  border: 5px solid #ffffff30;
  border-top: 3px solid #000000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 0.7s linear infinite;
  display: none; /* hidden initially */
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#applyBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.swal2-container {
  z-index: 999999 !important;
  border: 1px solid red !important;
}
/* Red border for SweetAlert popup */
.swal2-popup {
  border: 1px solid #14dfed !important;
  border-radius: 12px !important;
}
.blogsHeroSection {
  max-width: 100%;
  height: 50vh;
  background: linear-gradient(rgba(21, 21, 21, 0.5), rgba(21, 21, 21, 0.5)),
    url("../assets/backgroundSVG/blogs-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 30px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}

.blogsRow2 {
  margin-top: 20px;
}
.blogsContainer {
  padding-top: 40px;
  padding-bottom: 97px;
}
.contactUsHeroSection {
  max-width: 100%;
  height: 50vh;
  background: linear-gradient(rgba(21, 21, 21, 0.5), rgba(21, 21, 21, 0.5)),
    url("../assets/backgroundSVG/contactUs-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 30px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}
.contactPageTop {
  max-width: 100%;
  height: 228px;
  background: #141414;
  border-radius: 30px;
}
.contactLogoWrapper img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.contactDetailsBox {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 228px;
}
.contactLogoWrapper {
  display: flex;
  justify-content: center;
}
.contactPageAddressWrapper p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #e1e1e1;
}
.contactPageAddressWrapper p a {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #e1e1e1;
  text-decoration: none;
}
.contactFormWrapper {
  max-width: 100%;
  height: auto;
  background: #141414;
  border-radius: 30px;
  padding: 40px;
  margin-top: 30px;
}
.contactFormWrapper label {
  font-weight: 400;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 10px;

  color: #ffffff;
}
.contactFormBtn {
  max-width: 100%;
  width: 100%;
  height: 50px;
  background: #007ea7;
  border: none;
  border-radius: 50px;
  margin-top: 24px;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
.contactFormBtn img {
  max-width: 100%;
  height: auto;
  margin-left: 10px;
}
/* Base select styling */
.customSelect {
  width: 100%;
  height: 50px;
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 60px;
  padding: 0 20px;
  color: #fff;
  appearance: none; /* hide default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("assets/logos/down-arrow.svg"); /* your icon */
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: right 20px center; /* position arrow */
  cursor: pointer;
}

/* Placeholder option (first option) */
.customSelect option[value=""] {
  color: #7a7a7a; /* placeholder gray */
  font-size: 16px;
}

/* Dropdown text color */
.customSelect option {
  color: #7a7a7a; /* placeholder gray */
  font-size: 16px;
}

/* On focus */
.customSelect:focus {
  border-color: #007ea7 !important;
  box-shadow: 0 0 10px rgba(0, 126, 167, 0.6);
  outline: none;
}

/* When value is selected (change placeholder color to white) */
.customSelect:not([value=""]) {
  color: #fff;
}
.contactFormWrapper input {
  border-radius: 60px;
}
.contactFormWrapper textarea {
  border-radius: 60px;
  padding-top: 15px;
  padding-left: 15px;
}
.contactFormWrapper input::placeholder {
  font-size: 16px;
}
.contactFormWrapper textarea::placeholder {
  font-size: 16px;
}
.contactPageMain {
  padding-top: 54px;
}

.mapContainer iframe {
  border-radius: 30px;
  margin-top: 40px;
}
.blogeHeroSection {
  max-width: 100%;
  height: 50vh;
  background: linear-gradient(rgba(21, 21, 21, 0.5), rgba(21, 21, 21, 0.5)),
    url("../assets/backgroundSVG/blog-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 30px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}
.sinleBlogImg img {
  max-width: 100%;
  height: auto;
}
.clentsHeroSection {
  max-width: 100%;
  height: 50vh;
  background: linear-gradient(rgba(21, 21, 21, 0.5), rgba(21, 21, 21, 0.5)),
    url("../assets/backgroundSVG/client-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 30px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}
.clientLogoWrapper img {
  max-width: 100%;
  height: auto;
}
.clientPageMain {
  padding-top: 50px;
  padding-bottom: 50px;
}
.portFolioTitleLeftMain {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar {
  position: relative;
  z-index: 10; /* always on top */
}

.subTitle {
  position: relative;
  z-index: 1; /* behind navbar */
}
.svgBg {
  display: none;
}
.mobileSectionSvgBg {
  display: none;
}

/* Mobile menu background */
.offcanvas-start {
  background: #111; /* Dark theme */
  width: 260px;
}

/* Menu title */
.offcanvas-title {
  color: white;
  font-weight: 600;
}

/* Close button */
.btn-close {
  filter: invert(1); /* make close button white */
}

/* Nav links styling */
.offcanvas-body .nav-link {
  color: #fff;
  padding: 12px 20px;
  font-size: 16px;
  border-bottom: 1px solid #222;
}

.offcanvas-body .nav-link:hover {
  background: #007ea7;
  color: #fff;
}

/* Dropdown inside mobile menu */
.offcanvas-body .dropdown-menu {
  background: #1a1a1a;
  border: none;
}

.offcanvas-body .dropdown-item {
  color: #fff;
}

.offcanvas-body .dropdown-item:hover {
  background: #007ea7;
  color: #fff;
}
.aboutShadowMobile {
  display: none;
}
.whyChooseImgMobile-2 img {
  display: none;
}
.whyChooseImgMobile-1 img {
  display: none;
}
.singleBlogImg img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.singleBlogRight .Title h4 {
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 46px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
  margin-bottom: 6px;
}
.singleBlogRight p {
  font-weight: 400;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #999999;
  margin-top: 10px;
}
.singleBlogRight h6 {
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 28.8px;
  letter-spacing: 0%;
  color: #ffffff;
  margin-top: 30px;
}
.singleBlogRight ul li {
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 27.2px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #777777;
}
.singleBlogSection {
  padding-top: 40px;
  padding-bottom: 60px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.mainContactButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
}
/* Placeholder always white */
input::placeholder,
textarea::placeholder {
  color: #fff !important;
  opacity: 1;
}

/* Typed text always white */
input,
textarea,
select {
  color: #fff !important;
}

/* Autofill text also white */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 0 0px 1000px #000 inset !important; /* match your input BG */
  caret-color: #fff !important;
}

/* Focus text white */
input:focus,
textarea:focus,
select:focus {
  color: #fff !important;
}
.sinleBlogImg img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.blogTitle h2 {
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  leading-trim: NONE;
  line-height: 46px;
  letter-spacing: 0%;
  color: #ffffff;
  margin-top: 6px;
}
.blogParagraph p {
  font-weight: 400;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  color: #999999;
}
.sigleBlogContent {
  margin-top: 40px;
}
.footerSocialIcons {
  position: relative;
  z-index: 10;
}
.clientWorkContainer {
  padding-top: 51px;
  padding-bottom: 50px;
}
a {
  text-decoration: none;
}
.blogSubTitle h6 {
  font-weight: 400;
  font-style: Bold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 46px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
  margin-top: 20px;
}
.mainPoints ul li {
  color: #999999;
  font-weight: 400;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 10px;
}
.blogSubTitleLast h6 {
  font-weight: 500;
  font-style: Bold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 46px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffff;
  margin-top: 40px;
}
.blogSubTitleLast p {
  color: #999999;
  font-weight: 400;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 10px;
}
.conclusionParagraph p {
  color: #999999;
  font-weight: 400;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 10px;
}
.fixedWatzapIcon {
  position: fixed;
  right: 50px;
  bottom: 220px;
  z-index: 9999;
  cursor: pointer;
}

.fixedWatzapIcon img {
  max-width: 100%;     /* adjust size if needed */
  height: auto;
}
