 body {
      font-family: 'Poppins', sans-serif;
      background-color: #0e0a07;
      color: #fff;
    }

    /* Navbar */
    .navbar {
      margin-bottom: 0;
      color: aqua;
    }

    /* Hero Section */
    .hero {
      background-image:url("images/Background.jpg");;
      background-size: cover;
      background-position: center;
      color: white;
      padding: 100px 20px;
      text-align: center;
    }

    /* About Section */
    .home-content h2,
    .home-content p {
      animation: slideIn 2s ease-in-out;
    }

    .profile-img {
      border: 10px solid black;
      max-width: 100%;
      height: auto;
      animation: slideIn 2s ease-in-out;
    }

    @keyframes slideIn {
      from {
        transform: translateX(-100%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    /* Contact Form */
    .form-container {
      background-color: rgba(4, 9, 7, 0.949);
      max-width: 600px;
      margin: auto;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 0 20px #cb0cc5;
    }

    .form-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: rgb(218, 9, 237);
      text-align: center;
      margin-bottom: 20px;
    }

    .btn-custom {
      width: 100%;
      font-weight: bold;
    }

    .btn-custom:hover {
      background-color: black;
      color: white;
      transition: 1s ease-in-out;
    }
    .logo {
      color: #2195be;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.8rem;
      transition: 0.3s;
    }

    .logo:hover {
      color: rgb(167, 26, 26);
      transform: scale(1.1);
    }
     .link {
      color: chartreuse;
    }
    .display-4{
      color: chartreuse;
    }
    .lead{
      color: #2195be;
    }
    .h2,.h5 {
      color: #2195be;
    }
    p{
        color: chartreuse; 
    }