body {
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
  }

  .fade-in {
    animation: fadeIn 1s ease-in-out forwards;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .card-hover {
    transition: all 0.3s ease;
  }

  .card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .btn-hover {
    transition: all 0.3s ease;
  }

  .btn-hover:hover {
    transform: scale(1.05);
  }

  section {
    padding: 5rem 0;
  }

  @media (max-width: 768px) {
    .parallax {
      background-attachment: scroll;
    }
  }

  footer {
    padding: 2rem 0;
    background-color: #1e3a8a; /* Dark blue */
    color: white;
}

footer h3, footer h4 {
    margin-bottom: 1rem;
}

footer p {
    color: #d1d5db; /* Light gray */
}

footer a {
    transition: color 0.3s;
}

footer a:hover {
    color: #ffffff; /* White on hover */
}

footer .social-icons a {
    margin-right: 1rem; /* Space between icons */
}