body,html{
    width: 100%;
    margin: 0;
}
/* ====== General Page Setup ====== */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f9fc;
  color: #333;
}

/* Reset some default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f4f4f4;
  padding: 40px;
}

.contact-form {
  background-color: #fff;
  max-width: 500px;
  margin: auto;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

textarea {
  height: 120px;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}


/* ====== Contact Section ====== */
.contact-details {
  max-width: 900px;
  margin: 50px auto;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-details h2 {
  color: #004080;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ====== Contact Info Boxes ====== */
.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-box {
  background-color: #e9f2ff;
  border: 1px solid #c8ddff;
  border-radius: 10px;
  width: 260px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-box:hover {
  background-color: #d9eaff;
  transform: translateY(-5px);
}

.contact-box i {
  font-size: 30px;
  color: #004080;
  margin-bottom: 10px;
}

.contact-box p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

/* ====== Map Styling ====== */
.map {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.map iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* ====== Responsive Design ====== */
@media (max-width: 768px) 
  .contact-box {
    width: 90%;
  }
footer{
  background-color:skyblue;
  font-size: large;
  text-align: center;
}