/* Global Styles */
body {
    font-family: system-ui, 'Segoe UI';
    background-color: #e5e0e0;
    margin: 0;
    padding: 0;
  }
  /* Header Image Section */
.contact-header-image {
  background: url('your-contact-header.jpg') no-repeat center center/cover;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.contact-header-image .overlay {
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
  padding: 40px;
  width: 100%;
}

.contact-header-image h1 {
  font-size: 3rem;
  margin: 0;
}

.contact-header-image p {
  font-size: 1.2rem;
  margin-top: 10px;
}
/* Header Navigation */
header {
  background-color: #ffffff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

header .logo img {
  height: 100x;
}

header nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

header nav a {
  color: #000;
  text-decoration: none;
  padding: 5px 10px;
  font-weight: bold;
  transition: background 0.3s ease;
}

header nav a:hover,
header nav a.active {
  background-color: #d7d7d7;
  border-radius: 4px;
}

/* Contact Header Image */
.contact-header-image {
  background: url('contact-banner.jpg') no-repeat center center/cover;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.contact-header-image .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 60px;
  width: 100%;
}

.contact-header-image h1 {
  font-size: 3rem;
  margin: 0;
}

.contact-header-image p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Header Image Section */
.contact-header-image {
  background: url('contact\ us.jpg') no-repeat center center/cover;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.contact-header-image .overlay {
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
  padding: 40px;
  width: 100%;
}

.contact-header-image h1 {
  font-size: 3rem;
  margin: 0;
}

.contact-header-image p {
  font-size: 1.2rem;
  margin-top: 10px;
}

  
  .contact-container {
    max-width: 1200px;
    margin: 50px auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .contact-header h1 {
    color: #3c4f76;
    font-size: 2.5rem;
  }
  
  .contact-header p {
    font-size: 1.2rem;
    color: #333;
  }
  
  .contact-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .contact-form-container,
  .contact-info-container {
    flex: 1;
  }
  
  .contact-form-container h3,
  .contact-info-container h3 {
    color: #3c4f76;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .input-group {
    display: flex;
    gap: 20px;
  }
  
  .input-group input {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #ccc;
    font-size: 1rem;
  }
  
  textarea {
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #ccc;
    font-size: 1rem;
    resize: vertical;
  }
  
  button {
    background-color: #3c4f76;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  button:hover {
    background-color: #32406c;
  }
  
  .contact-info-container p {
    font-size: 1.1rem;
    color: #333;
  }
  
  .contact-info-container a {
    text-decoration: none;
    color: #3c4f76;
    font-weight: bold;
  }
  
  /* Map Container */
  .map-container {
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Floating WhatsApp Button */
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
  }
  
  .whatsapp-float:hover {
    background-color: #1ebe5d;
  }
  
  /* Media Query for Small Screens */
  @media (max-width: 768px) {
    .contact-content {
      flex-direction: column;
      align-items: center;
    }
  
    .input-group {
      flex-direction: column;
      gap: 10px;
    }
  
    .input-group input {
      width: 100%;
    }
  
    button {
      width: 100%;
    }
  }
  