/* HERO TITLE AND CONTENT STYLING */

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 2px;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 70px;
  width: 100%;
}

.gradient-text {
  background: linear-gradient(90deg, #1ca1fa, #00b84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#company-overview.scroll-fade .gradient-text {
  background: none;
  color: white;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: white;
}

.hero-description {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  font-weight: 400;
}

/* HERO BUTTONS */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.btn-explore,
.btn-contact {
  padding: 1rem 2rem;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
}

.btn-explore {
  background: linear-gradient(90deg, #1ca1fa, #00b84c);
  color: white;
}

.btn-explore:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(28, 161, 250, 0.4);
}

.btn-contact {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-contact:hover {
  border-color: transparent;
  background: linear-gradient(90deg, #1ca1fa, #00b84c);
  color: white;
  transform: translateY(-3px);
}

/* HERO STATS */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #1ca1fa;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: bounce 2s infinite;
}

.scroll-indicator p {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.5px;
  font-weight: 600;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* RESPONSIVE ADJUSTMENTS */

@media (max-width: 768px) {
  .hero-buttons {
    gap: 0.8rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    padding: 0 1rem;
  }

  .btn-explore,
  .btn-contact {
    width: 100%;
    padding: 0.9rem 1.5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }
}

@media (max-width: 414px) {
  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .hero-stats {
    gap: 0.8rem;
  }

  .scroll-indicator {
    bottom: 20px;
  }
}
