body {
    font-family: Arial;
    margin: 0;
    padding: 0;
    
}

.container1 {
    text-align: center;
    padding: 40px;
    color:black;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;

}

.contact-info, .contact-form {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

.map-container {
    text-align: center;
    margin: 20px auto;
    max-width: 1200px;
}

  

  


  
  /* Fade In-Out Animation */
  @keyframes fadeInOut {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
  }
  
  /* Hide the preloader after animation */
  body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
  }
 
  /* Contact Image Section */
.contact-image {
  text-align: center;
  margin-top: 40px;
}

.contact-image img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* Contact Page Styles */
.contact-banner {
  position: relative;
  width: 100%;
  height: 300px; /* Adjust height as needed */
  background: url('contact.jpg') no-repeat center center/cover;
}

.contact-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Adjust opacity (0.5 = 50% opacity) */
}

.contact-banner h1{
  position: relative;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  z-index: 2;
  text-align: center;
  line-height: 300px; /* Centers text vertically */
}


.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  color: #333;
}

h1 {
  text-align: center;
  color: #333;
}
.form-group {
  margin-bottom: 15px;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
textarea {
  height: 150px;
}
button {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}
button:disabled {
  background: #cccccc;
  cursor: not-allowed;
}
#statusMessage {
  margin-top: 15px;
  padding: 10px;
  border-radius: 4px;
  display: none;
}
.success {
  background: #dff0d8;
  color: #3c763d;
  display: block;
}
.error {
  background: #f2dede;
  color: #a94442;
  display: block;
}

/* Footer Styles */
.footer {
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  z-index: 2;
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
}

.footer p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 1.4rem;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #00acee;
  transform: scale(1.2);
}

/* Responsive Footer */
@media (max-width: 480px) {
  .footer p {
    font-size: 0.85rem;
  }

  .social-icons a {
    font-size: 1.2rem;
  }
}