* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

.navbar {
  background-color: #003049;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.navbar-left {
  display: flex;
  align-items: center;
}

.logo {
  height: 60px;
  margin-right: 12px;
}

.brand {
  font-weight: 700;
  color: white;
  font-size: 22px;
  text-decoration: none;
}

.navbar-right a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s, border-bottom 0.3s;
}

.navbar-right a:hover {
  color: #ffd700;
  border-bottom: 2px solid #ffd700;
}

/* ===== Banner ===== */
.banner {
  background: url('./BG/Contact.jpeg') no-repeat center center/cover;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 20px;
}

.overlay h1 {
  font-size: 50px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.overlay p {
  font-size: 22px;
  margin-top: 15px;
  opacity: 0.9;
}

/* ===== Contact Info ===== */
.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.info-card {
  width: 320px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(220, 53, 69, 0.3);
}

.icon {
  font-size: 34px;
  color: #dc3545;
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 20px;
  margin-top: 10px;
  font-weight: 700;
}

.info-card p {
  margin: 8px 0;
  font-size: 16px;
}

.highlight {
  color: #dc3545;
  font-weight: 600;
}

.info-card iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 10px;
  margin-top: 15px;
}

/* ===== Footer ===== */
.footer {
  background-color: #003049;
  color: white;
  display: flex;
  flex-wrap: wrap;
  padding: 50px 30px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 250px;
  margin: 20px;
}

.footer-logo {
  height: 75px;
  margin-bottom: 10px;
}

.footer h4 {
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
}

.footer h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: white;
  margin-top: 6px;
}

.footer p,
.footer a {
  color: white;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.8;
}

.footer a:hover {
  text-decoration: underline;
}

.tagline {
  font-size: 14px;
  margin-top: 10px;
  font-style: italic;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: white;
  margin-right: 10px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ffd700;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .navbar-right a {
    margin-left: 10px;
    font-size: 14px;
  }

  .overlay h1 {
    font-size: 36px;
  }

  .overlay p {
    font-size: 18px;
  }

  .logo {
    height: 45px;
  }

  .info-card {
    width: 90%;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    margin: 15px 0;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }
}

/* Responsive Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #003049;
}

.mobile-menu a {
  padding: 10px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
}

.mobile-menu a:hover {
  background-color: #002233;
}

@media (max-width: 768px) {
  .navbar-right {
    display: none;
  }

  .menu-icon {
    display: inline-block;
    font-size: 28px;
    cursor: pointer;
    color: white;
  }

  .mobile-menu.show {
    display: flex;
  }
}
