body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.glass {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
}

.hero-gradient {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
}

/* Marquee Animation */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  background: #fbbf24;
  z-index: 60;
  position: relative;
}

.marquee-text {
  display: inline-block;
  animation: scroll 35s linear infinite;
  font-weight: 800;
  color: #1e3a8a;
}

@keyframes scroll {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

/* Floating Social Sidebar */
.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

.social-sidebar a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
}

.social-sidebar a:hover {
  width: 65px;
  padding-left: 15px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* Back to Top Button */
#backToTop {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99;
  transition: all 0.4s ease;
}

/* Mobile Menu Transition */
#mobile-menu {
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
  background-color: white;
  /* Ensure solid background */
}

#mobile-menu.active {
  transform: translateX(0);
}

.card-hover:hover {
  transform: translateY(-12px);
  transition: all 0.4s ease;
  box-shadow: 0 25px 30px -10px rgba(30, 58, 138, 0.2);
}

@keyframes bounce-slow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-bounce-slow {
  animation: bounce-slow 4s ease-in-out infinite;
}

.text-shadow-sm {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
