.home-section {
  padding-top: 180px;
  text-align: center;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9ff 0%, #eef3ff 100%);
}

.home-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #f7f7f7, transparent);
  z-index: 10;
}

.logo-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 
    0 0 0 8px rgba(26, 26, 46, 0.3),
    0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 20;
  animation: logoFloat 4s ease-in-out infinite, pulse 3s infinite;
}

.main-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.logo-circle:hover .main-logo {
  transform: scale(1.05) rotate(3deg);
}

.site-title {
  margin-top: 28px;
  font-size: 4.2rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-dark); /* Critical fix for visibility */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
}

.site-subtitle {
  font-size: 1.6rem;
  color: var(--text-blue); /* Dark blue for contrast */
  margin-top: 16px;
  max-width: 700px;
  line-height: 1.6;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 0.7s;
}

@media (max-width: 1050px) {
  .site-title { font-size: 3.4rem; }
  .footer-top-inner h2 { font-size: 2.8rem; }
}

@media (max-width: 880px) {
  .site-title { font-size: 2.8rem; }
  .logo-circle { width: 180px; height: 180px; }
}

@media (max-width: 550px) {
  .site-title { font-size: 2.3rem; }
  .site-subtitle { font-size: 1.1rem; }
  .logo-circle { width: 150px; height: 150px; }
}