/* Smooth fade for header and footer */
.animated-header, .footer-animated {
    animation: slideDown 0.7s ease-in-out;
  }
  
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-50px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  /* Hover effects on services */
  .service-box {
    transition: all 0.3s ease;
  }
  .service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  
  /* Footer icons hover */
  footer a:hover {
    color: #0dcaf0 !important;
  }
  
  /* Carousel caption styling */
  .carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 20px;
  }
  