/*--------------------------------------------------------------
# Custom Navs Section
--------------------------------------------------------------*/

/* Custom styles for Feature Section text */
.feature-text {
  color: black;
  font-weight: 500;
}

/* Custom styles for the <p> tags in the feature section */
.feature-text {
  color: black;
  font-weight: 500;
}

/* Optional: You can also add specific styles for the lists */
.features ul li span {
  color: black;
  font-weight: 500;
}

.feature-section-title {
  color: rgba(240, 92, 43, 1);
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}
.feature-section-subtitle {
  color: #000;
  text-align: center;
  font-weight: 500;
}
.custom-navs .nav-tabs {
  border: 0;
  background: linear-gradient(
    90deg,
    rgba(240, 92, 43, 1) 32%,
    rgba(249, 162, 38, 1) 91%
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.custom-navs .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.custom-navs .nav-item:last-child {
  padding-right: 0;
}

.custom-navs .nav-link {
  background-color: none;
  color: white;
  padding: 10px 40px;
  transition: 0.3s;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .custom-navs .nav-link {
    padding: 8px 20px;
  }
}

.custom-navs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.custom-navs .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.custom-navs .nav-link:hover {
  border-color: white;
}

.custom-navs .nav-link:hover h4 {
  color: white;
}

.custom-navs .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.custom-navs .nav-link.active h4 {
  color: #000;
}

.custom-navs .tab-content {
  margin-top: 30px;
}

.custom-navs .tab-pane h3 {
  color: #000;
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.custom-navs .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.custom-navs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.custom-navs .tab-pane ul li {
  padding-top: 10px;
}

.custom-navs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: rgba(240, 92, 43, 1);
}

.custom-navs .tab-pane p:last-child {
  margin-bottom: 0;
}
