/* Existing styles (assumed, not shown) remain unchanged */
/* Add the following styles for the contact section */

/* Ensure the video maintains the same styling as the previous image */
.hero {
    width: 100%;
    height: 100vh;
    object-fit: cover; /* Ensures video fills the space like the image */
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }

  /* Smooth scrolling behavior for anchor links */
html {
    scroll-behavior: smooth;
  }

.contact {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
  }

  .contact-container {
    max-width: 600px;
    width: 100%;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .contact-container h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 10px;
  }
  
  .contact-container p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #636e72;
    margin-bottom: 30px;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  
  .form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 8px;
  }
  
  .form-group input,
  .form-group textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    padding: 12px;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #74b9ff;
    box-shadow: 0 0 8px rgba(116, 185, 255, 0.3);
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .submit-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #0984e3;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
   /* Smooth scrolling behavior for anchor links */
  .submit-btn:hover {
    background-color: #0871c2;
    transform: translateY(-2px);
  }
  
  .submit-btn:active {
    transform: translateY(0);
  }


  .form-notification {
  display: none;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.form-notification.success {
  display: block;
  background-color: rgba(46, 125, 50, 0.12);
  border: 1px solid rgba(46, 125, 50, 0.35);
  color: #2e7d32;
}

.form-notification.error {
  display: block;
  background-color: rgba(198, 40, 40, 0.12);
  border: 1px solid rgba(198, 40, 40, 0.35);
  color: #c62828;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}