body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f6f8;
}

nav {
  background: #1f3c88;
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
}

.hero {
  background: #e6ecf7;
  padding: 90px 20px;
  text-align: center;
}

.section {
  padding: 40px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: white;
  border-radius: 6px;
  padding: 15px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.list {
  list-style: none;
  font-size: 18px;
}

form input, form textarea, form button {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
}

button {
  background: #1f3c88;
  color: white;
  border: none;
  cursor: pointer;
}

footer {
  background: #1f3c88;
  color: white;
  text-align: center;
  padding: 15px;
}


.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

.footer {
  background: #1b2a7a;
  color: white;
  padding: 50px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer h3 {
  margin-bottom: 10px;
}

.footer form input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  margin-bottom: 10px;
}

.footer form button {
  background: #3f51b5;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 20px;
  cursor: pointer;
}

.footer form button:hover {
  background: #5c6bc0;
}

.footer p {
  font-size: 14px;
}

copyright {
  text-align: left;
}

.footer .copyright {
  margin-top: 30px;
  text-align: left;
  font-size: 13px;
}
.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.footer {
  background: #1b2a7a;
  color: white;
  padding: 50px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer h3 {
  margin-bottom: 10px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer form input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  margin-bottom: 10px;
}

.footer form button {
  background: #3f51b5;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 25px;
  cursor: pointer;
}

.footer form button:hover {
  background: #5c6bc0;
}

.footer .copyright {
  margin-top: 30px;
  font-size: 13px;
}
.location-section {
  background: #1b2a7a;
  color: white;
  padding: 60px 20px;
}

.location-content {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.location-left h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.location-left p {
  font-size: 16px;
  line-height: 1.8;
}

.location-right h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
}

.location-right p {
  margin-bottom: 20px;
  font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .location-content {
    grid-template-columns: 1fr;
  }
}



