/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    background: #0a0a0a; /* Dark background */
  }
  
  /* Video Background */
  .video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  
  .video-background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
  }
  
  .video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 1;
  }
  
  /* Contact Page Content */
  .contact-content {
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    border: 2px solid #8a2be2;
    box-shadow: 0 0 10px 2px rgba(138, 43, 226, 0.5),
                0 0 20px 5px rgba(138, 43, 226, 0.3),
                0 0 30px 10px rgba(138, 43, 226, 0.1);
    margin-top: 50px;
  }
  
  .contact-content h1 {
    font-size: 36px;
    color: #8a2be2;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .contact-content p {
    font-size: 18px;
    color: #cccccc;
    text-align: center;
    margin-bottom: 30px;
  }
  
  /* Contact Form */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-size: 18px;
    color: #8a2be2;
    margin-bottom: 10px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px;
    border: 1px solid #8a2be2;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    outline: none;
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #cccccc;
  }
  
  .form-group textarea {
    resize: vertical; /* Allow vertical resizing */
  }
  
  .submit-btn {
    padding: 10px 20px;
    background-color: #8a2be2;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #7b1fa2; /* Darker purple on hover */
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .contact-content {
      padding: 20px;
    }
  
    .contact-content h1 {
      font-size: 28px;
    }
  
    .contact-content p {
      font-size: 16px;
    }
  }