.hero {
  margin-top: -100px;
  width: 100%;
  height: 900px;
  background: url("../images/Banner.png") center center / cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* z-index: 5; */
}
.btn:hover .down-icon {
  filter: brightness(0) saturate(100%) invert(0); /* turns it black */
}

.hero .overlay {
  height: 100%;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  visibility: hidden;
}

.hero-content {
  margin-top: 100px;
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 20px;
  max-width: 750px;
}

.hero-content h1 {
  font-size: 80px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero-content p {
  font-size: 24px;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid #fff;
  border-radius: 6px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: #ffffff;
  color: #000;
}

/* Responsive Styles */

/* Tablet (max-width: 992px) */

@media (max-width: 992px) {
  .hero {
    height: 650px;
    padding: 0 40px;
  }

  .hero-content h1 {
    font-size: 60px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .btn {
    font-size: 16px;
    padding: 10px 24px;
  }
}

/* Large Mobile (max-width: 768px) */

@media (max-width: 768px) {
  .hero {
    height: 600px;
    padding: 0 25px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .btn {
    font-size: 16px;
    padding: 10px 22px;
  }
}

/* Small Mobile (max-width: 576px) */

@media (max-width: 576px) {
  .hero {
    /* margin-top: 1px; */
    height: 600px;
    padding: 0 18px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .btn {
    font-size: 14px;
    padding: 8px 20px;
  }
}
