@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Urbanist", sans-serif;
}

#header {
  position: absolute;
  z-index: 999;
  width: 100%;
}

.navbar {
  padding: 15px 0px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.logo {
  font-weight: bold;
  font-size: 24px;
  color: #0066cc;
  margin-right: 20px;
}
.logo img {
  width: 140px;
  height: 60px;
}
.nav-links {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav-links > li {
  margin-right: 20px;
  position: relative;
}
.nav-links a {
  text-decoration: none;
  color: black;
}

.nav-links a:hover {
  text-decoration: none;
  color: white;
  background: black;
}
.menu-toggle {
  display: none;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #99d2f8;
  min-width: 400px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 10px;
  padding: 10px;
}

.nav-links > li:hover .dropdown-content {
  display: block;
}
.dropdown-section {
  margin-bottom: 20px;
}
.dropdown-section h3 {
  color: #0066cc;
  margin: 0 0 10px 0;
  font-size: 14px;
}
.dropdown-columns {
  display: flex;
}
.dropdown-column {
  flex: 1;
}
.dropdown-item {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.dropdown-item img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.badge {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
}
.badge-green {
  background-color: #4caf50;
  color: white;
}
.badge-blue {
  background-color: #2196f3;
  color: white;
}
.badge-pink {
  background-color: #e91e63;
  color: white;
}
.badge-orange {
  background-color: #ff9800;
  color: white;
}
.badge-purple {
  background-color: #9c27b0;
  color: white;
}
.nav-links > li > a {
  display: inline-flex;
  align-items: center;
}
/* Target only About, Demo Plan, and Services links */
.nav-links > li:nth-child(2) > a::after,
.nav-links > li:nth-child(3) > a::after,
.nav-links > li:nth-child(4) > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
  margin-left: 5px;
  transition: transform 0.3s ease;
}
/* Rotate dropdown icon on hover for About, Demo Plan, and Services */
.nav-links > li:nth-child(2):hover > a::after,
.nav-links > li:nth-child(3):hover > a::after,
.nav-links > li:nth-child(4):hover > a::after {
  transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
  .navbar {
    padding: 15px 25px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .nav-links {
    flex-basis: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links > li {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  .dropdown-content {
    position: static;
    box-shadow: none;
    min-width: 100%;
  }
  .dropdown-columns {
    flex-direction: column;
  }
  .menu-toggle {
    display: block;
    border-radius: 10px;
  }

  .menu-toggle i {
    width: 40px;
    font-size: x-large;
  }

  .enquiry-button {
    margin-top: 10px;
  }
}




