:root {
  --primary-color: #d0021b;
  --secondary-color: #007bff;
  --tertiary-color: #dc3545;
  --text-color: #5c5c5c;
  /*     --text-color: #333333; */
  --darker-text: #212121;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f8f8f8;
}

.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: transform 0.3s ease-in-out;
}

.nav-divider {
  width: 1px;
  height: 1.4rem;
  background-color: #302f2f;
  margin: 0 10px;
}

/* Top Bar Styles */
/* .top-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #f1f1f1;
  padding: 10px 80px;
  font-size: 14px;
  gap: 30px;
} */

/* Top Bar Styles */
.top-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #f1f1f1;
  padding: 10px 80px;
  font-size: 14px;
  gap: 30px;
}

.top-bar span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar i {
  color: var(--primary-color);
  font-size: 14px;
}

.top-bar a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.1em;
  letter-spacing: 1px;
}

/* Navbar Styles */
/* .navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  height: 110px;
} */

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  height: 110px;
}

/* ✅ Slide up effect */
.nav-wrapper.hide {
  transform: translateY(-150px);
}

.logo img {
  height: 50px;
  width: auto;
}

.logo {
  margin-left: 20px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.quote-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quote-btn:hover {
  background-color: #b30017;
}

.quote-btn i {
  font-size: 12px;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: black;
  background: none;
  border: none;
  position: absolute;
  right: 20px;
  top: 10px;
}

@media (max-width: 768px) {
  .nav-divider {
    display: none;
  }
  .top-bar {
    padding: 8px 20px;
    flex-direction: column;
    gap: 5px;
  }

  .navbar-container {
    padding: 15px 10px;
    height: auto;
  }

  .logo img {
    height: 50px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a.active::after {
    bottom: -5px;
  }

  .quote-btn {
    margin-top: 10px;
  }
}
