html {
  scroll-behavior: smooth;
}

.navbar {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(10px);
}

.profile-img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgb(0, 242, 255);
  box-shadow: 0 0 25px rgb(0, 187, 255);
}

.social-icons a {
  color: white;
  font-size: 24px;
  margin-right: 15px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: rgb(0, 242, 255);
  transform: scale(1.2);
}

.card-custom1 {
  max-width: 800px;
}

.card-custom2 {
  max-width: 800px;
}

.card-custom3 {
  max-width: 800px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
}

a:hover {
  color: rgb(0, 140, 255) !important;
}

.btn-danger:hover {
  box-shadow: 0 0 15px rgb(45, 135, 219);
}

.delay {
  animation-delay: 0.3s;
}
.delay2 {
  animation-delay: 0.6s;
}
.delay3 {
  animation-delay: 0.9s;
}
.delay4 {
  animation-delay: 1.2s;
}
.delay5 {
  animation-delay: 1.5s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
