body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f1f1f1;
  padding-top: 50px;
}

.contact-section {
  padding: 60px 20px;
  background-color: #e0e0e0;

}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  padding-top: 50px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-details, .contact-form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  flex: 1 1 400px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
}

.info i {
  color: #007bff;
  margin-right: 10px;
  font-size: 18px;
}

.social-icons {
  margin: 20px 0;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  color: #333;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #007bff;
}

.map-container {
  margin-top: 20px;
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact-form button {
  background-color: #007bff;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}

.contact-form button:active {
  transform: scale(0.97);
  background-color: #004494;
}

footer {
  text-align: center;
  padding: 15px 0;
  background: #333;
  color: #fff;
}
#popup-message {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4CAF50;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: none;
  opacity: 0;
  transition: opacity 0.1s ease;
}
