/* ===== HERO LOGO ===== */
.hero-logo {
  width: 310px;
  height: 310px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  display: block;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.25),
    0 0 0 6px rgba(255, 255, 255, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.35);
  animation: logoFadeIn 1.2s ease forwards;
  opacity: 0;
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Stagger the text in after the logo */
.hero-overlay h1 {
  animation: heroTextIn 1s ease 0.4s forwards;
  opacity: 0;
}

.hero-overlay p {
  animation: heroTextIn 1s ease 0.65s forwards;
  opacity: 0;
}

.cta-buttons {
  animation: heroTextIn 1s ease 0.85s forwards;
  opacity: 0;
}

@keyframes heroTextIn {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 220px;
    height: 220px;
  }

  .about img {
    width: 200px !important;
    height: 200px !important;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
