body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url('https://kidsparkeducation.org/hs-fs/hubfs/stem-elementary-school-kid-spark-education.jpg?width=1200&height=650&name=stem-elementary-school-kid-spark-education.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh;
}


body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: -1;
}


.navbar {
  background-color: #660000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #ffcc00;
}

.navbar ul li a.active {
  color: #ffcc00;
}


.contact-container {
  max-width: 600px;
  margin: 80px auto;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  padding-bottom: 30px;
}


.contact-image {
  width: 100%;
  height: 220px;
  background-image: url('https://cdn.pixabay.com/photo/2016/11/29/06/15/library-1868070_1280.jpg');
  background-size: cover;
  background-position: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.contact-section {
  padding: 30px 25px;
}

.contact-section h2 {
  color: #800000;
  font-size: 26px;
  margin-bottom: 10px;
  text-align: center;
}

.contact-section p {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
  text-align: center;
}

.call-us {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  color: #006600;
}

.call-us a {
  color: #006600;
  text-decoration: none;
}

.call-us a:hover {
  text-decoration: underline;
}


form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: bold;
  color: #333;
}

input,
textarea,
select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #990000;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 100px;
}


button {
  background-color: #f1b100;
  color: #000;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #d99e00;
}