body,html{
    width: 100%;
    margin:0;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
}

.contact-container {
  width: 80%;
  margin: auto;
  padding: 20px;
  text-align: center;
}

h1 {
  color: #f9f9f9;
  margin-bottom: 20px;
}

.info-item {
  background: white;
  padding: 15px;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
  flex: 1 1 200px;
}

.info-item i {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 8px;
  display: block;
}

.map-container h2 {
  margin-bottom: 15px;
  color: #4814b0;
  text-align: center;
}

.map iframe {
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}
#contact {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(135, 206, 250, 0.4); /* soft sky-blue shadow */
}

#contact h1 {
  text-align: center;
  color: #007acc; /* sky blue */
  margin-bottom: 30px;
  font-size: xx-large;
}

/* Contact Info Boxes */
.contact-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.info-box {
  background-color: #e6f4ff;
  border: 1px solid #b3e0ff;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
}

.info-box h2 {
  color: #007acc;
  margin-bottom: 10px;
  font-size: xx-large;
}

/* 🌿 Contact Form Styling */
.contact-form {
  background-color: #f0f9ff;
  border: 1px solid #cce7ff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 122, 204, 0.2);
}

.contact-form h2 {
  text-align: center;
  color: #007acc;
  margin-bottom: 25px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  color: #004d80;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #99d6ff;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007acc;
  box-shadow: 0 0 6px rgba(0, 122, 204, 0.3);
}

.contact-form button {
  background-color: #007acc;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #0099ff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .info-box {
    width: 80%;
  }
}
/* 🌍 Map Container Styling */
.map-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 25px;
  background-color: #f8fbff; /* soft light background */
  border-radius: 12px;
  border: 1px solid #b3e0ff;
  box-shadow: 0 6px 18px rgba(0, 122, 204, 0.25); /* sky-blue soft shadow */
}

.map-container h2 {
  text-align: center;
  color: #007acc; /* sky blue - congregation color */
  font-size: 22px;
  margin-bottom: 20px;
}

/* 🗺️ Map Box */
.map {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(135, 206, 250, 0.4); /* soft blue glow around map */
}

/* Keep the map responsive */
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}
footer{
  text-align: center;
  font-size: large;
  color: #007acc;
}