/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f7fa;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 700;
  color: #003c71;
}

/* Navbar */
.navbar {
  background-color: #001f3f;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.8rem;
}

.navbar .logo span {
  color: #00b1f2;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: #00b1f2;
}

.nav-links .active {
  color: #00b1f2;
}

/* Hero Section */
.contact-hero {
  background: linear-gradient(to right, #003c71, #00b1f2);
  color: white;
  padding: 8rem 2rem 5rem;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.contact-hero p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 1rem;
}

/* Contact Section */
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 2rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  background: #00b1f2;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  width: 100%;
}

.contact-form button:hover {
  background: #0072ce;
  transform: scale(1.05);
}

/* Contact Info Section */
.contact-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.info-box {
  background: #f0f8ff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
  width: 250px;
}

.info-box i {
  font-size: 2.5rem;
  color: #00b1f2;
  margin-bottom: 0.5rem;
}

.info-box h3 {
  color: #003c71;
}

.info-box p {
  color: #333;
}

/* Map Section */
.map iframe {
  border: 0;
  width: 100%;
  height: 450px;
}

/* Footer */
.footer {
  background-color: #001f3f;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 5rem;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-nav a {
  color: white;
  text-decoration: none;
}

.footer-social a {
  color: #00b1f2;
  margin: 0 0.5rem;
  font-size: 1.5rem;
}

.footer p {
  margin-top: 1.5rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .contact-form {
    width: 100%;
    padding: 1.5rem;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .info-box {
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-container {
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
}
