/* Prevent AOS animations from causing horizontal scroll */
html, body {
  overflow-x: hidden;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff20; /* slightly transparent */
  color: white;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.social-icon:hover {
  background-color: #fff;
  color: #1d4ed8; /* blue-700 */
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}



  /* Hide scrollbar for Chrome, Safari, Edge */
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for Firefox */
  .no-scrollbar {
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none; /* Firefox */
  }
/* Fade in effect when visible */
  .fade-in-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }

  .fade-in-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
    .scrollbar-hide::-webkit-scrollbar { display: none; }
  .scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }


#animated-heading span {
 /* transition: all 0.8s ease-out;*/
   will-change: transform, opacity;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.translate-y-6 {
  transform: translateY(1.5rem);
}
.translate-y-0 {
  transform: translateY(0);
}

