/* Style the contact form container */
.contact-form {
    max-width: 500px;
    margin: 0 auto; /* Center the form */
    padding: 20px;
    background: #f9f9f9; /* Light background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border: 1px solid #e6e6e6; /* Thin border */
  }
  
  /* Style the heading */
  .container h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  /* Style input fields */
  .contact-form .form-control {
    border: 1px solid #ccc; /* Light border */
    border-radius: 5px; /* Rounded corners */
    padding: 10px 15px;
    font-size: 16px;
    color: #555;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Smooth focus animation */
  }
  
  .contact-form .form-control:focus {
    border-color: #007bff; /* Focus border */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Glow effect on focus */
    outline: none;
  }
  
  /* Style the textarea */
  .contact-form textarea {
    resize: none; /* Prevent resizing */
  }
  
  /* Style the button */
  .contact-form button[type="submit"] {
    background-color: #007bff; /* Primary color */
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth button effects */
  }
  
  .contact-form button[type="submit"]:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift */
  }
  
  /* Feedback message styles */
  #form-feedback {
    font-size: 14px;
    color: #28a745; /* Green for success */
    display: none; /* Hidden by default */
  }
  
  /* Responsive design adjustments */
  @media (max-width: 576px) {
    .contact-form {
      padding: 15px;
    }
  
    .contact-form .form-control {
      font-size: 14px;
    }
  
    .contact-form button[type="submit"] {
      font-size: 14px;
      padding: 8px 15px;
    }
  }
  