
.ecoland-hero .hero-image {
  width: 100%;
  height: 100%; 
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.hero-left {
   background: #fdfdfd;
    z-index: 1;
  }

.hero-left h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.hero-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #222;
}

.hero-left p {
  font-size: 18px;
  color: #444;
  max-width: 400px;
  line-height: 1.6;
}

.hero-btn {
  margin-top: 20px;
  background-color: #004080;
  color: rgb(253, 253, 253);
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  }

.hero-btn:hover {
  background-color: #0059b3;
}

.hero-right {
  position: relative;
  align-items: center;
  justify-content: center;
   z-index: 0;
}

.image-bg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.vertical-label { 
  position: absolute;
  opacity: 0.7;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 192, 203, 0.9);
  color: black;
  font-size: 50px;
  padding: 22px;
  writing-mode: sideways-lr;
  text-orientation: mixed;
  border-radius: 8px;
  font-family: serif;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  } 
    .button {
  text-align: center;
  margin-top: 30px;
}



@media (max-width: 768px) {
  .button {
    margin: 20px; /* spacing above/below */
  }
  /* .vertical-label {
    display: block;
    text-align: center;  /* centers the number under the text */
  }

}

