:root {
  --dc-primary: rgb(11, 0, 205);
  --dc-light-primary: rgb(66, 70, 250);
  --dc-light-secondary: rgb(219, 255, 227);
  --dc-medium-light-secondary: #def5e2;
  --dc-extra-light-secondary: #effff7;
  --dc-dark-secondary: #185021;
}


/* Section Area */

.dc-primary-btn {
  background-color: var(--dc-light-primary) !important;
  color: white !important;
}

.dc-primary-btn:hover {
  background-color: var(--dc-primary) !important;
  color: white !important;
}

.highlight-text {
  color: var(--dc-primary);
}

.highlight-text-with-bg {
  background-color: var(--dc-primary);
}

.bg-light-secondary {
  background-color: var(--dc-light-secondary) !important;
}

.hero-container {
  background: var(--dc-primary);
  background: linear-gradient(333deg, var(--dc-light-primary) 0%, var(--dc-primary) 100%);
}

.hero-bg-image {
  left: -100px;
  top: 0;
  scale: 1.3;
  opacity: 0.3;
  z-index: 1;
}


.team-cards {
  padding: 3rem 2rem;
  background-color: var(--dc-light-secondary) !important;
  transition: background-color 0.3s ease;
}

.team-cards.card-bg-white {
  background-color: var(--dc-extra-light-secondary) !important;
}

.team-cards:hover {
  background: rgb(11, 0, 205);
  background: linear-gradient(333deg, rgba(11, 0, 205, 1) 0%, rgba(66, 250, 115, 1) 100%);
  color: white;
  transition: background-color 0.3s ease;
}

.team-cards i {
  font-size: 12px;
  color: black;
  /* transition: color 0.3s ease; */
}

.team-cards:hover i {
  color: white;
  /* transition: color 0.3s ease; */
}

.team-cards .team-card-separator-line {
  background: white;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 1px;
  width: 100%;
}

.team-cards .team-card-separator-line span {
  background: white;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}

.team-cards .team-card-member-image {
  width: 200px;
  height: 200px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  object-fit: cover;
  object-position: top;
}

.team-cards .team-card-description {
  font-size: 18px;

}

.team-cards .team-card-designation {
  font-size: 14px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.investors-section-wrapper {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.investors-section-wrapper:before,
.investors-section-wrapper:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.investors-section-wrapper:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.investors-section-wrapper:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.investors-logos-wrapper {
  display: inline-block;
  animation: 15s slide infinite linear;
}

.investors-logos-wrapper img {
  width: 120px;
  height: 100px;
  margin: 0 20px;
  object-fit: contain;
  filter: grayscale(1);
}

.feature-card {
  padding: 2rem !important;
  background-color: var(--dc-extra-light-secondary);
  transition: scale 0.3s ease;
}

.feature-card:hover {
  scale: 1.1;
  transition: scale 0.3s ease;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--dc-medium-light-secondary);
  color: var(--dc-dark-secondary);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  background-color: var(--dc-light-primary);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
}

#scrollToTopBtn:hover {
  background-color: var(--dc-primary);
}




@media only screen and (max-width: 600px) {

  .hero-bg-image {
    display: none;
    opacity: 0;
  }

  .team-cards {
    padding: 2rem 1rem;
  }

}