.navigation-wrapper {
  display: contents;
}
 
.navigation-container1 {
  display: contents;
}
 
.navigation-container2 {
  display: none;
}
 
.navigation-container3 {
  display: contents;
}
 
.navigation-navigation-mobile-item1 {
  animation-delay: 0.05s;
}
 
.navigation-navigation-mobile-item2 {
  animation-delay: 0.1s;
}
 
.navigation-navigation-mobile-item3 {
  animation-delay: 0.15s;
}
 
.navigation-navigation-mobile-item4 {
  animation-delay: 0.2s;
}
 
.navigation-navigation-mobile-item5 {
  animation-delay: 0.25s;
}
 
.navigation-container4 {
  display: none;
}
 
.navigation-container5 {
  display: contents;
}
 
.navigation-container6 {
  display: none;
}
 
.navigation-container7 {
  display: contents;
}

.footer-wrapper {
  display: contents;
}
 
.footer-container1 {
  display: contents;
}
 
.footer-container2 {
  display: none;
}
 
.footer-container3 {
  display: contents;
}

.home-container1 {
  width: 100%;
  display: block;
  min-height: 100vh;
}
 
.home-container2 {
  display: none;
}
 
.home-container3 {
  display: contents;
}
 
.home-container4 {
  display: none;
}
 
.home-container5 {
  display: contents;
}
 
.home-container6 {
  right: 50px;
  border: 1px solid #ffffff5c;
  bottom: 30px;
  display: flex;
  z-index: 22;
  position: fixed;
  box-shadow: 5px 5px 10px 0px rgba(31, 31, 31, 0.4);
  min-height: auto;
  align-items: center;
  padding-top: 8px;
  padding-left: 12px;
  border-radius: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  backdrop-filter: blur(6px);
  background-color: rgba(41, 41, 41, 0.41);
}
 
.home-icon204 {
  width: 24px;
  margin-right: 4px;
}
 
.home-text28 {
  color: white;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
  .home-container6 {
    right: 20px;
    bottom: 20px;
    padding-top: 6px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 6px;
  }

  .home-icon204 {
    width: 20px;
  }

  .home-text28 {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .navigation-container {
    padding: var(--spacing-sm) var(--spacing-md) !important;
  }

  .home-container6 {
    right: 15px;
    bottom: 15px;
    padding-top: 5px;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 5px;
  }

  .home-text28 {
    font-size: 11px;
  }

  .navigation-menu {
    flex-direction: column;
    gap: var(--spacing-sm) !important;
  }

  .navigation-logo {
    font-size: var(--font-size-lg);
  }
}

.hero-logo-circle {
  width: 180px;
  height: 180px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: fadeInScale 0.8s ease-out;
}

.hero-logo-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

html.dark-mode .hero-logo-circle {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .hero-logo-circle {
    width: 140px;
    height: 140px;
    margin-bottom: 1.5rem;
  }
  
  .hero-logo-image {
    width: 110px;
    height: 110px;
  }
}
