@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 48px 0px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to left, #ffb400 66.5%, #fff 40%);
  z-index: 1000;
}

.logo img {
  width: 235px;
  margin-bottom: -4%;
}

.nav-links {

  font-family: "Roboto Slab", serif;
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-links li {
  width: fit-content;
  position: relative;
  font-family: "Roboto Slab", serif;
}

.nav-links a {
  font-family: "Roboto", serif;
  text-decoration: none;
  display: block;

  padding: 10px 15px;
  transition: 0.3s;
}

/* ---------- Fonts ---------- */
.nav-links a {
  text-align: center;
  font-family: "Roboto", serif;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
}

/* .nav-links a {
      font-family: "Roboto-slab", sans-serif;
      font-size: 18px;
      color: #fff;
    } */

.nav-links a.active {
  font-family: "Roboto", serif;
  color: #1a4a8c;
  font-weight: bold;
}

.dropdown a {
  font-family: "Roboto", serif;
  font-size: 16px;
  text-align: center;
  color: #000;
  font-weight: 400;
  border-bottom: 1px solid #c3c3c3;
}

.dropdown a:hover {
  background-color: #ffc300;
  transition: all 0.3s ease;

}


/* ---------- Dropdown ---------- */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  display: none;
  flex-direction: column;
  z-index: 999;
  list-style: none;

}

.dropdown a {
  padding: 10px;
  font-family: "Roboto", serif;
  text-align: left;
  width: 165px;
}

/* Desktop hover */
.nav-links li:hover>.dropdown {
  display: flex;
}

/* ---------- Button ---------- */
.btn1 {
  margin-left: 20px;
  padding: 8px 23px;
  background: #1d488c;
  color: #fff;
  border: none;
  font-weight: 400;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  font-family: "Roboto", serif;
}

.btn1:hover {

  background: #000;
  color: #fff;
  /* font-weight: 400; */
  transition: all 0.3s;
}

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #000;
  margin: 4px 0;
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {

  .nav-links li {
    width: 100%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    background: #fff;
    position: absolute;
    top: 95px;
    left: 0;
    border-bottom: 1px solid #ccc;
  }

  .nav-links a {
    color: #111;
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
  }

  .nav-links .btn1 a {
    color: #fff;
  }



  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile dropdown toggle */
  .dropdown {
    position: static;
    width: 100%;
    background: #fff;
    border-top: none;
  }

  .dropdown a {
    color: #000;
    width: 100%;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    text-align: left;
  }

  .dropdown-toggle.active>.dropdown {
    display: flex;
    flex-direction: column;
  }

  /* ✅ Full width Contact button */
  .btn1 {
    width: 100%;
    margin: 10px 0;
    text-align: center;
    border-radius: 0;
    /* optional: remove rounded corners for clean block style */
  }
}



/* ---------- Content Padding ---------- */
.content {
  margin-top: 80px;
  padding: 20px;
}

.section {
  height: 500px;
  background: #f4f4f4;
  margin-bottom: 20px;
}