
.hero-banner {
  width: 100%;
  height: 500px;
  background: url("images/1.jpg") center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
}

.hero-content {
  color: #fff;
  max-width: 700px;
  padding: 20px 40px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-content h2 {
  font-size: 26px;
  color: #ff8c00;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

.btn-primary {
  background: #ff8c00;
  color: #fff;
}

.btn-primary:hover {
  background: #e67600;
}

.btn-secondary {
  background: #25d366;
  color: #fff;
}

.btn-secondary:hover {
  background: #1ebf57;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero-banner {
    height: 360px;
  }

  .hero-content {
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content h2 {
    font-size: 18px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 14px;
    padding: 10px 20px;
  }
}





