
/* contact */

.hero-banner {
  padding: 0;
}

.banner-wrapper {
  min-height: 300px;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.banner-left {
  background: rgba(0, 0, 0, 0.5);
}

.banner-right {
  background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 767px) {
  .banner-wrapper {
    flex-direction: column;
  }

  .banner-left,
  .banner-right {
    text-align: center;
    padding: 1rem !important;
  }

  .hero-banner h2 {
    font-size: 2rem !important;
  }
}

.icon-circle {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  transition: background-color 0.3s ease;
}

@media screen and (min-width: 380px) and (max-width: 767px) {
  .banner-left {
    justify-content: center !important; /* Center horizontally */
    text-align: center !important;      /* Ensure text is centered */
  }
}