* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #f9f9f9;
}

.call-now-bar {
  background-color: #cc7311;
  color: white;
  text-align: center;
  padding: 8px 0;
  font-weight: 600;
  font-size: 14px;
}

.call-now-bar a {
  color: #fff;
}

/* Navbar styles */
.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: #ffffff;
  border-bottom: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 48px;
  width: auto;
}

.brand-name {
  font-size: 18px;
  font-weight: 600;
  color: #1e3a8a;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  text-decoration: none;
  background-color: #fff;
  color: #1e3a8a;
  padding: 8px 12px;
  border-radius: 1px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s ease;
}

.nav-links a:hover {
  background-color: #e0ecff;
  color: #2563eb;
}

/* Hamburger - hidden on large screens */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #1e3a8a;
}

/* ✅ Responsive navbar */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hamburger {
    display: block;
    order: 1;
  }

  .logo-container {
    order: 2;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links a {
    width: 100%;
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #ccc;
  }

  .navbar.open .nav-links {
    display: flex;
  }
}




/* .contact-info a:hover {
  text-decoration: underline;
} */

