body {
    color: white;
    margin: 0;
  }

  .hero-section {
    height: calc(100vh - 11em); /* altezza viewport meno navbar */
    display: flex;
    flex-direction: column; /* opzionale */
    justify-content: center;  /* centra verticalmente */
    position: relative;
}

  @media (min-width: 992px) {
  .left-section {
    padding-right: 10em;
  }
}


  .left-section h6 {
    color: #ff3b30;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
  }

  .left-section h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .right-section {
    color: #ddd;
  }

  .trial-button {
    background-color: #ff3b30;
    border: none;
    border-radius: 25px;
    padding: 0.5em 4em;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    margin-top: 20px;
    text-decoration: underline;
    text-underline-offset: 8px;
  }

  .icons {
    font-size: 2rem;
    gap: 20px;
    margin-bottom: 15px;
  }

  .scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    font-size: 1.5rem;
    color: white;
    opacity: 1;
  }

  .second-section {
  width: 100%;
  background-color: #fff;
  color: #000;
}

.left-side {
  background-color: #fff;
}

.right-side {
  background-color: #fff;
}

.form-control:focus {
  box-shadow: none;
  border-color: #000;
}


  .underline-sphere-text{
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-color: white;
    font-size: 20px;
  }

  .text-under-sphere-dashboard{
    font-size: 60px !important;
  }

  @keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}

.bounce-icon {
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-down::after {
  content: attr(title);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.scroll-down:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.custom-select {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  box-shadow: none;
  padding-left: 0;
  font-size: 1rem;
}

.custom-select:focus {
  outline: none;
  box-shadow: none;
  border-color: #000;
}

.form-control:focus {
  box-shadow: none;
  border-color: #000;
}
