

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 60px;
  background: #fff;
}

/* LOGO */
.logo img {
  width: 450px;
}

.mob{
  display: none;
}

.ds{
  display: block;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-links ul li a {
  text-decoration: none;
  color: #0c4c50;
  font-weight: 500;
  transition: 0.3s;
}

/* CONTACT BUTTON */
.contact-btn {
  background: #0c4c50;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 25px;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #0c4c50;
  margin: 4px 0;
  transition: 0.3s ease;
  border-radius: 2px;
}

/* 🔥 BURGER → X ANIMATION */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

.mob{
  display: block;
}

.ds{
  display: none;
}

.logo img {
    width: 287px;
}

  .navbar {
    padding: 15px 20px;
  }

  .burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
  }

  .nav-links.active {
    max-height: 500px;
  }

  .nav-links ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 18px;
  }

  .nav-links ul li {
    width: 100%;
  }

  .nav-links ul li a {
    display: block;
    width: 100%;
  }

  /* REMOVE BUTTON STYLE */
  .contact-btn {
    background: none;
    color: #0c4c50 !important;
    padding: 0;
    border-radius: 0;
  }
}