
/* Custom supportive CSS3 animations and styles */
body { scroll-behavior: smooth; }
.section-title { animation: fadeInDown 1s ease; }
.card-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card-hover:hover { transform: translateY(-5px); box-shadow:0 6px 15px rgba(0,0,0,0.1); }
@keyframes fadeInDown {
  from {opacity:0; transform:translateY(-20px);}
  to {opacity:1; transform:translateY(0);}
}
