/* contact.css */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Apply font to the body */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    height: 100%;
    background-color: transparent;
}

/* Background Video Styles */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.background-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    filter: brightness(50%); /* Dark overlay for readability */
}

/* Ensure navbar and content are positioned above the video */
nav, main, footer {
    position: relative;
    z-index: 1;
}

/* Contact Section Styles */
.contact-section {
    background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background */
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
    color: #fff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Section Title and Description */
.section-title {
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-description {
    text-align: center;
    color: #f0f0f0;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    transition: box-shadow 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ccc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 10px #ff8c00;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Submit Button Styles */
.submit-button {
    padding: 15px;
    background-color: #ff8c00;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #cf5f04;
    transform: translateY(-2px);
}

.submit-button:active {
    background-color: #c66900;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-section {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .submit-button {
        font-size: 1rem;
    }
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Navbar Styles (Optional: Ensure navbar text is readable over video) */
.navbar {
    background-color: rgba(255, 255, 255, 0.9);
}

.navbar .nav-link {
    color: #333 !important;
}

.navbar .nav-link:hover {
    color: #ff8c00 !important;
}

/* Footer Styles */
.custom-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 20px;
    text-align: left;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer-section {
    flex: 1;
    margin: 10px;
  }
  
  .footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  .footer-section ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-section li {
    margin-bottom: 10px;
  }
  
  .footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-section a:hover {
    color: #ff8c00;
  }
  
  .footer-bottom {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .social-icons {
    margin-top: 10px;
  }
  
  .social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #ff8c00;
  }
  
  /* Responsive Footer */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
  }
  