/* ---------- Hero Banner ---------- */
.hero-banner {
  position: relative;
  background-image: url("/assets/mavin-banner.png");
  background-position: center top; /* or center center */
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #0d6efd; /* fallback color behind transparent areas */
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

/* Overlay gradient for text contrast */
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.6), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

/* Content area */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Text styling */
.hero-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.hero-banner h1 span {
  color: #ffe082;
}

.hero-banner p {
  font-size: 1.15rem;
  margin-top: 15px;
  color: #f1f5f9;
  max-width: 550px;
}

.btn-banner {
  background: #fff;
  color: #0d6efd;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 28px;
  margin-top: 20px;
  transition: 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-banner:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-banner {
    height: auto;
    padding: 100px 0;
    text-align: center;
  }

  .hero-banner h1 {
    font-size: 2.2rem;
  }

  .hero-banner p {
    font-size: 1rem;
    max-width: 100%;
  }
}

/* ---------- Feature Boxes ---------- */
.features-overlap {
    margin-top: -240px;
    position: relative;
    z-index: 5;
    background: hsl(0deg 0% 67.72% / 0%);
}

.feature-box {
  padding: 30px 20px;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-box i {
  font-size: 2rem;
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.box-green {
  background-color: #22c55e;
}

.box-yellow {
  background-color: #facc15;
  color: #222;
}

.box-blue {
  background-color: #0ea5e9;
}

.box-pink {
  background-color: #ec4899;
}

/* ---------- Responsive ---------- */
