* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
:root {
  --lime: #a7e92f;
  --electric-blue: #1ac2ff;
  --charcoal: #1b1f23;
  --white: #ffffff;
  --fit-lime: #a7e92f;
  --fit-blue: #1ac2ff;
  --fit-dark: #0d1b1e;
  --fit-white: #ffffff;
}
.bg-fit {
  background: linear-gradient(90deg, #1ac2ff, #a7e92f);
}
.bg-fit-dark {
  background-color: #0d1b1e;
}
.navbar .nav-link {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar .nav-link:hover,
.navbar .dropdown-item:hover {
  color: #ffd700;
}
.fit-hero-section {
  height: 100vh;
  background: linear-gradient(135deg, var(--charcoal), #0c2734);
  background-image: url("assets/img/hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.fit-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.fit-hero-section .container {
  position: relative;
  z-index: 2;
}

.btn-hero {
  background-color: var(--lime);
  color: var(--charcoal);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
  transition: all 0.3s ease-in-out;
}

.btn-hero:hover {
  background-color: var(--electric-blue);
  color: var(--white);
}
.bg-gradient-section {
  background: linear-gradient(120deg, #1ac2ff, #a7e92f);
  color: #ffffff;
}

.plan-card {
  background-color: #f9f9f9;
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.icon-box i {
  color: #ffffff;
}

.icon-box h5 {
  font-weight: 600;
}
.testimonial {
  border-left: 5px solid var(--electric-blue);
  transition: transform 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-5px);
}

#contatti a {
  color: var(--electric-blue);
  text-decoration: underline;
}
.bg-gradient-business {
  background: linear-gradient(135deg, #1ac2ff, #a7e92f);
  color: #ffffff;
}

.text-lime {
  color: #a7e92f;
}

.bg-dark.bg-opacity-25 {
  background-color: rgba(0, 0, 0, 0.2) !important;
}
footer a:hover {
  text-decoration: underline;
  color: #fff;
}