.navbar-nav .nav-item {
  margin: 0 7px;
  font-weight: 400;
  color: rgb(30, 28, 28) !important;
}
.sticky-top {
  background: #fff;
}
.navbar-nav .nav-item a {
  color: rgb(23, 21, 21);
}

.nav-link {
  border: 2px solid transparent; /* invisible border for layout stability */
  padding: 8px 20px;
  border-radius: 4px; /* optional for rounded corners */
  transition: border-color 0.3s;
  display: inline-block; /* make sure border wraps nicely */
  font-weight: 500;
}

/* Active state - Vertical border */
.nav-link.active::after {
  transform: scaleY(1);
}

.display-4 {
  font-size: 50px!important;
}
.margin-custom-top {
  margin-top: 140px!important;
}
/* Navbar items color and styling when active */
/* .navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #1ad6e7 !important;
  font-weight: bold;
} */

/* Ensure the images take the same height */
.services-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.equal-height-image {
  object-fit: cover; /* Ensure the image covers the container without distortion */
  height: 200px; /* Set a fixed height for images */
}

.services-card {
  background: linear-gradient(
    180deg,
    rgba(34, 40, 61, 0) -1.11%,
    rgba(34, 40, 61, 0.6) 7.86%,
    #22283d 19.3%
  );
  color: #ffffff;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  height: 100%; /* Ensure consistent card height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-card h5 {
  margin-bottom: 16px;
  color: #ffffff;
}

.services-card h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, #f9f8f7, #fbfafa);
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.6), 0 0 16px rgba(127, 0, 255, 0.4);
  border-radius: 2px;
}

.dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: white;
  border-radius: 50%;
}

/* Adjust dot positions around the finger */
.dot1 {
  top: 8px;
  left: 23px;
}
.dot2 {
  top: 17px;
  left: 18px;
}
.dot3 {
  top: 16px;
  left: 36px;
}
.dot4 {
  top: 16px;
  left: 43px;
}
.dot5 {
  top: 8px;
  left: 42px;
}

/* Container for the element with the animated border */
.nav-item {
  position: relative;
  display: inline-block;
}

.hand-icon {
  position: absolute;
  top: -34px;
  right: 8px;
  /* padding: 17px; */
  border-radius: 16px;
  width: 65px;
}

.hand-icon img {
  width: 60.38px;
  height: 60.38px;
}

.curve-line {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
}
.curve-line::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 380px;

  border-top: 2px solid #a8a6a9;
  border-radius: 100% 100% 0 0 / 100% 100% 0 0;
  z-index: 0;
}

.circle-image {
  position: relative;
  z-index: 1;
  width: 170px;
  height: auto;
  overflow: hidden;
  margin: -100px auto 20px;
}

.circle-image video {
  width: 100%;
  height: 100%;
  display: block;
}

.hover-up {
  transition: transform 0.3s ease;
  display: inline-block;
}

.hover-up:hover {
  transform: translateY(-8px) scale(1.35); /* Move up and enlarge slightly */
}

.circle-btn {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.circle-btn.active,
.circle-btn:hover {
  background-color: #555;
}

#certificate-img {
  transition: opacity 0.5s ease;
  max-width: 100%;
}

.clients-section-wrapper {
  background-color: #1e2645;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 48px 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.clients-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px;
  color: white;
  text-align: center;
}

body {
  overflow-x: hidden !important;
}

.section {
  background: #1e2645;
  padding: 20px 0px;
  color: rgb(98, 94, 94);
  min-width: 100%;
}

.divider {
  height: 40px;
  width: 1px;
  margin-top: 8px;
  background-color: rgba(255, 255, 255, 0.3);
}
/* Clients Slider */
.clients-slider {
  /* overflow: hidden; */
  margin-top: 56px;
  border-radius: 9px; /* Adjust the value as needed */
}

.slider-track {
  display: flex;
  animation: scroll-left 50s linear infinite;
  width: fit-content;
}

.slider-track img {
  width: 249px;
  margin: 0 8px;
  transition: transform 0.3s ease-in-out;
}

.slider-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Partners section */
.partners-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px;
}

.partners-box {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2); /* Thin white border */
  border-radius: 11px;
}
.partners-logos img {
  height: auto;
  object-fit: contain;

  padding: 8px 12px;
  border-radius: 5px;
}

/* Footer */
.footer {
  background: linear-gradient(2.25deg, #0f142a 2.02%, #142050 98.25%);
  padding: 2px 10px;
  color: #ccc;
}

.social-icons a {
  /* margin: 0 5px; */
  color: white;
  font-size: 16px;
  text-decoration: none;
}

.icon {
  color: rgb(167, 161, 161) !important;
}

.contact-left {
  flex: 1;
  font-size: 21.24px;
}
.contact-right {
  flex: 1;

  font-size: 16px;
}

.social-icons a {
  color: #ccc;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: white;
}

.fixed-height {
  height: 410px;
  padding: 32px;
}

.glow-line {
  width: 70%;
  margin-bottom: 12px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(147, 93, 255, 0.2) 0%,
    rgba(147, 93, 255, 0.6) 10%,
    rgba(147, 93, 255, 0.9) 50%,
    rgba(147, 93, 255, 0.6) 70%,
    rgba(147, 93, 255, 0.2) 90%
  ); 
}


.nav-item .dropdown-menu {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

/* On hover, show the dropdown */
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown item hover effect */
.nav-item li .dropdown-item {
  font-size: 14px;
  transition: background-color 0.3s ease;
}

/* On hover of the dropdown item */
.nav-item {
  color: #fff;
}

.dropdown-item:hover {
  background: #fff; /* Slightly lighter background on hover */
  color: #fff;
}

/* Adjust the position of the dropdown */
.nav-item {
  margin-right: 15px;
}

/* Optional: Add some text styling to ensure readability over the background images */
.dropdown-item-who a,
.dropdown-item-career a {
  color: white; /* Ensure the text is readable */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Optional: Adds text shadow for better visibility */
}

.banner-heading {
  color: white; /* Change color based on your background */
  text-align: center;
  padding: 20px;
  border-radius: 10px;
}

.banner-heading h1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 2.5rem; /* Adjust as needed */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  max-width: 100vw; /* Prevents breaking on small screens */
}

/* @keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

#client-images-container {
  display: flex;
  overflow: hidden; 
  white-space: nowrap; 
  width: 100%;
}

#client-images-container img {
  animation: slide 5s linear infinite;
  margin-right: 20px;
  display: inline-block;
  width: auto;
  width: 200px;
  height: auto;
}


#client-images-container.clone {
  animation: slide 5s linear infinite;
} */


.fs-footer {
  font-size: 14px !important;
  font-weight: 600;
}

.industries-paragraph {
  color: #a2a2a2;
}

.section-bg {
  background: #effaff;
}

ol .li-bold::marker {
  font-weight: bold;
}

ol,
ul {
  padding-left: 1rem;
}

.expandable-content {
  transition: max-height 0.5s ease;
}

.section-bg-gradient {
  background: linear-gradient(135deg, #1d5ea9, #1d71b7, #1d8bcb);
  color: #fff;
}

.privacy-heading {
  color: #10344c;
}

.inner-shadow-menu {
  box-shadow:
    inset 0 3px 18px 0 rgba(30,40,90,0.10),
    /* existing outer shadow for smooth border */
    0 6px 24px 0 rgba(30,40,90,0.06);
}

.inner-shadow {
    box-shadow: inset 0 -4px 6px rgba(0, 0, 0, 0.1);
}

  
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #123E54;
    box-shadow: 0 0 0 4px #123E54, 0 2px 10px rgba(0,0,0,0.18);
    border: 2px solid #fff;
    transition: opacity 0.3s, visibility 0.3s;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0.92;
}
.scroll-to-top:hover {
    background: #123E54;
    opacity: 1;
    transform: scale(1.08);
}
.scroll-to-top .arrow-up {
    display: block;
    width: 24px;
    height: 24px;
    margin: auto;
    color: #222;
}

.tech-section {
  margin-bottom: 2.5rem;
}
.tech-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #25396f;
  letter-spacing: .02em;
}
.tech-card {
  background: #fff;
  border: 1px solid #eef1f7;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(30,40,90,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  min-height: 92px;
  transition: box-shadow .22s cubic-bezier(.4,.2,.2,1), transform .2s;
  margin-bottom: 1.25rem;
  height: 100%; 
}
.tech-card:hover {
  box-shadow: 0 6px 18px rgba(40,70,120,.14);
  transform: translateY(-4px) scale(1.045);
  border-color: #c3d0e6;
}
.tech-logo {
  max-width: 150px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(0.1);
  transition: filter .22s;
}
.tech-card:hover .tech-logo {
  filter: none;
}
@media (max-width: 576px) {
  .tech-card { min-height: 70px; padding: 0.5rem; }
  .tech-logo { max-width: 72px; max-height: 32px; }
}

/* Navbar Link Active */
.nav-link.active {
    font-weight: bold;
    color: #1ad6e7 !important;
    position: relative;
    border-radius: 4px 4px 0 0;
}

/* Active Bottom Border (for the navbar link) */
.nav-link.active::after {
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -2px; /* Adjust as needed */
    border-radius: 2px;
    background: linear-gradient(90deg, #e57dff, #00f0fd);
}

/* Dropdown Menu Active Item */
.dropdown-item.active {
    font-weight: bold;
    color: #1ad6e7 !important;
    background: rgba(26, 214, 231, 0.1); /* Add a background color on hover */
}

/* For dropdown toggle button to show active */
.nav-item.dropdown .nav-link.active {
    color: #1ad6e7 !important;
}

/* On hover, apply the linear gradient border */
.nav-link:hover, .dropdown-item:hover {
  border: 3px solid transparent; /* Ensure border exists for the gradient */
  border-image: linear-gradient(90deg, #e57dff, #00f0fd) 1;
  border-radius: 4px; /* Optionally add rounded corners */
}

/* Optional: Focus state for better accessibility */
.nav-link:focus, .dropdown-item:focus {
  outline: none; /* Remove default focus outline */
  border: 3px solid transparent; /* Ensure border exists for the gradient */
  border-image: linear-gradient(90deg, #e57dff, #00f0fd) 1;
  border-radius: 4px;
}

/* Add extra styles for the dropdown toggle (Solutions) */
.nav-item.dropdown .nav-link:hover {
  border: 3px solid transparent;
  border-image: linear-gradient(90deg, #e57dff, #00f0fd) 1;
  border-radius: 4px;
}


/* Center the dropdown and allow text to wrap naturally */
.dropdown-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
    min-width: 320px;
    word-break: break-word;
    white-space: normal !important;
}

.dropdown-menu .dropdown-item {
    white-space: normal !important;
    padding: 10px;
}

/* Responsive: On mobile, make it single column */
@media (max-width: 991.98px) {
    .dropdown-menu .row {
        flex-direction: column !important;
    }
}

@media (max-width: 768px) {
  .fs-footer {
    flex-direction: column;
  }
  .fs-footer li {
    margin-bottom: 8px;
  }
  .fs-footer .mx-3 {
    margin: 0px !important;
    margin-bottom: 4px !important;
  }
  .circle-image {
    width: 110px;
  }
  .curve-line::before {
    height: 162px;
    margin-top: -36px;
  }
  .banner-heading h1 {
    font-size: 14px!important;
  }
  .mob-cr {
    flex-direction: column-reverse;
  }
  .divider {
    display: none;
  }
  .dropdown-menu {
    transform: none !important;
  }
}
@media (max-width: 1240px) {
  .fs-footer li {
    font-size: 8px;
  }
  /* .fs-footer .mx-3 {
    margin: 10px!important;
  } */
}
