.hero-logo {
    width: 30% !important;
    margin-top: 15%;
}


.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-bottom: -100px !important;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeZoom 30s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 10s; }
.slide:nth-child(3) { animation-delay: 20s; }

@keyframes fadeZoom {
  0% { opacity: 0; transform: scale(1); }
  5% { opacity: 1; transform: scale(1); }
  45% { opacity: 1; transform: scale(1.1); }
  50% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1); }
}

/* Hero text styling */
.hero-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  max-width: 500px;
  z-index: 2;
}

.hero-logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #F28C28, #7B1E1E); /* Orange → Maroon */
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}