.ws-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f0f6fb;
  color: #092c5c;
  user-select: none;
}

.hero-image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  animation: fadeZoomIn 4s ease forwards;
  transform-origin: center center;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
}

.hero-text h1 {
  font-size: 3.1rem;
  font-weight: 900;
  margin-bottom: 14px;
  text-shadow: 0 3px 8px rgb(233, 231, 231);
}

.hero-text p {
  font-size: 1.3rem;
  font-weight: 600;
  color: #dbe9f4;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.27);
}

/* Moderate fade + zoom animation */
@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(1.15);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero-section {
    height: 50vh;
  }
  .hero-text h1 {
    font-size: 2.1rem;
  }
  .hero-text p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.7rem;
  }
  .hero-text p {
    font-size: 0.95rem;
  }
}
