* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

header {
  background-color: #fff;
  padding: 15px 30px;
  height: 60px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.logo {
  font-size: 24px;
}

.links {
  display: flex;
  align-items: center;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  
}

.menu li a {
  font-weight: 500;
  text-decoration: none;
  color: #323232;
}

.menu li a:hover {
  color: #f564a9;
}

.contact-btn {
  background-color: #f564a9;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: bold;
}

.toggle-btn {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #323232;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  header {
    padding: 10px 20px;
    height: 77px;;
  }

  .nav {
    flex-direction: row;
    align-items: center;
  }

  .logo {
    font-size: 20px;
    height: 30px;
  }

  .links {
    display: none; /* Hidden by default */
    width: 100%;
    position: absolute;
    top: 55px;
    left: 0;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .links.active {
    display: block; 
    z-index: 2000;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding-left: 46%;
  }

  .menu li {
    width: 100%;
  }

  .menu li a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
  }

  .contact-btn {
    
    width:100px;
    align-items: center;
    justify-content: center;
    display: flex;
    padding-left: 10px!important;
  }

  .toggle-btn {
    display: block; /* Show toggle button on mobile */
  }
}