@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
* {
  scroll-behavior: smooth;
  font-family: "Rubik";
}

.about-content {
  box-shadow: -20px 20px 0px 20px #2e398b;
}

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

.fade-in {
  animation: fadeIn 0.3s ease-out forwards;
}

/* Smooth transitions */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #283584;
  transition: all 0.3s ease-in-out;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

/* Responsive image handling */
img {
  max-width: 100%;
  height: auto;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: #1a2456;
}
