.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
background-image: url(/assets/images/hero-bg.webp);
background-repeat: no-repeat;
background-size: cover;
  color: #fff;
  position: relative;
  
}


.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hero-left {
  flex: 1;
  padding-right: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #d1d1d1;
  line-height: 1.8;
}

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

.hero-btn {
  padding: 12px 30px;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.explore-btn {
  background-color: #f39c12;
  color: #fff;
}

.contact-btn {
  background-color: transparent;
  color: #f39c12;
  border: 2px solid #f39c12;
}

.hero-btn:hover {
  transform: translateY(-5px);
  background-color: #e67e22;
  color: #fff;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 1500px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 2.5rem;
   
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-image {
    max-width: 5300px;
  }
  .hero-btn {
    padding: 12px 20px;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
  }
  
}
@media (max-width: 768px) {
  .hero-image {
    display: none;
  }
}
