.hero-image-new {
  margin-top: 30px;
  text-align: center;
}

.hero-image-new img {
  max-width: 250px;
  border-radius: 50%;
  border: 5px solid var(--secondary-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.hero-image-new img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 992px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
  
  .hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}

@media screen and (max-width: 991px) {
  .hero-image-new img {
    max-width: 200px;
  }
}

@media screen and (max-width: 576px) {
  .hero-image-new img {
    max-width: 180px;
  }
}
