.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #1e3a5f;
  border-radius: 4px;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Standard (where supported) */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#mobile-menu {
  transition: all 0.3s ease;
}
/* Replace the existing logo styles with these */

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  max-width: 120px;
}

.logo-img-large {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.hero-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-img {
    height: 32px;
    max-width: 100px;
  }
  .logo-img-large {
    height: 60px;
  }
}
