/* Animation Keyframes */
@keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes hoverBounce {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }
  
  /* Hero Section Animations */
  .animated-text {
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
  }
  
  .animated-text.delay-1 {
    animation-delay: 0.5s;
  }
  
  /* Button Hover Effects */
  .hover-bounce {
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  }
  
  .hover-bounce:hover {
    animation: hoverBounce 0.6s ease-in-out;
  }
  
  /* Style for Buttons */
  .btn-brand:hover {
    background-color: #ff4500;
    color: white;
  }
  
  .btn-outline-light:hover {
    background-color: #ff4500;
    color: white;
    border-color: #ff4500;
  }
  
  /* Fade-in Container */
  #hero .container {
    animation: fadeInUp 1.5s ease-in-out forwards;
  }
  
  /* Responsive Tweaks */
  @media (max-width: 768px) {
    #hero h1 {
      font-size: 2.5rem;
    }
    #hero h5 {
      font-size: 1.2rem;
    }
  }
  
#hero {
    background: url(../images/Kajiado.JPG);
    background-position: center;
    background-size: cover;
    height: 450px;
}
  