body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f8f8;
  color: #333;
}

section {
  padding: 60px 20px;
  text-align: center;
}

.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('bg\ \(13\).jpeg') no-repeat center/cover;
  color: white;
  padding: 100px 20px;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  flex: 1;
  min-width: 250px;
}

.contact-box a {
  text-decoration: none;
  color: #007BFF;
  font-weight: bold;
}

.contact-form form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input, .contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  background: #28a745;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #218838;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 12px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }
}











.global-back-home-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
  background-color: #2e86de;
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.global-back-home-btn:hover {
  background-color: #1b4f72;
  transform: scale(1.05);
}

/* Mobile responsive tweaks */
@media (max-width: 480px) {
  .global-back-home-btn {
    top: 15px;
    left: 15px;
    padding: 8px 14px;
    font-size: 13px;
  }
}
