/* Custom styling for tabs */
.tab-section-custom {
  background: white;
  padding: 20px 0;
  top: 55px; /* Adjust this value based on your navbar height */
  z-index: 1000;
}

.nav-tabs-custom {
  border: none;
  width: 90vw;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
}

.nav-item-custom {
  list-style: none;
  border-bottom: 1px solid #000;
  padding: 15px 30px;
}

.nav-item-custom.active {
  border: 1px solid #000;
  border-bottom: none;
  background-color: white;
}

.nav-item-custom:hover {
  border-color: #000;
}

.nav-link-custom {
  border: none;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  display: block;
}

/* Content sections styling */
.tab-section-content {
  min-height: 500px; /* Adjust as needed */
  padding: 40px 0;
}

@media (max-width: 768px) {
  .tab-section-custom {
    background: white;
    padding: 20px 0;
    top: 60px; /* Adjust this value based on your navbar height */
    z-index: 1000;
  }
}

@media (max-width: 512px) {
  .tab-section-custom {
    background: white;
    padding: 20px 0;
    top: 65px; /* Adjust this value based on your navbar height */
    z-index: 1000;
  }

  .nav-item-custom {
    list-style: none;
    border-bottom: 1px solid #000;
    padding: 5px;
  }
}
