/* CSS Code */

/* Google Font Import Link */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Ubuntu', sans-serif;
}
.btn-demo{
  background-color: #4070f4;
  color: #fff;
}

.home {
  margin: 0;
  padding: 0;
  background-color: #e91f00;
}

.header-offer{
  background-color: #e91f00;
}

nav {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

nav.sticky {
  padding: 15px 20px;
  /* background: #4070f4; */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo a {
  font-weight: 500;
  font-size: 24px;
  color: #4070f4;
}

.burger-icon {
  display: none; /* Initially hide on larger screens */
  cursor: pointer;
  margin-right: 20px;
  font-size: 30px;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #0E2431;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 12px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #4070f4;
}

/* Add a media query for smaller screens */
@media only screen and (max-width: 768px) {
  .burger-icon {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0; /* Align the dropdown to the right */
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 0;
  }

  .nav-links a {
    padding: 10px 0;
  }
}
