/* General Reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Satoshi", sans-serif;
  overflow-x: hidden !important;
  align-items: center;
  margin: auto;
  max-width: 1700px;
}

.body {
  overflow: hidden !important;
  position: relative;
}
/* Navbar Styles */

.nav-container{
  position: fixed;
  background-color: #fff;
  width: 100%;
  z-index: 999;
  top: 0;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 150px;
  background: #ffffffee;
  z-index: 999;
  position: relative;
}

.service-services {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 40px;
  margin-top: 40px;
}


.newmenu {
  display: flex;
  align-items: center;
  gap: 50px;
}

.logo img {
  /* max-width: 150px; */
}

.menuItems {
  display: flex;
  align-items: center;
}

.menuItems ul {
  display: flex;
  list-style-type: none;
  gap: 28px;
  align-items: center;
}

.menuItems ul a {
  text-decoration: none;
  font-size: 16px;
  color: rgba(40, 40, 43, 1);
  font-weight: 600;
  line-height: 16px;
  transition: color 0.3s;
}

.menuItems ul a:hover {
  color: #0a46ae;
}

.appointmentButton button {
  background: #0a46ae;
  padding: 15px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.appointmentButton button:hover {
  background: #d175a3;
  color: #fff;
}

/* Mobile Menu Styles */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #000;
}

.menuItemsmobile {
  display: none;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 999;
  border-top: 1px solid #ccc;
  padding: 20px 0;
}

.menuItemsmobile ul {
  flex-direction: column;
  list-style-type: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

.menuItemsmobile ul li {
  padding: 10px 0;
}

.menuItemsmobile ul a {
  text-decoration: none;
  font-size: 16px;
  color: rgba(40, 40, 43, 1);
  font-weight: 500;
  line-height: 16px;
  transition: color 0.3s;
}

.menuItemsmobile ul a:hover {
  color: #0a46ae;
}

.menuItemsmobile a.active,
.menuItems a.active {
  color: #d175a3;
  font-weight: 600;
}

.show {
  display: flex !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }

  .menuItems {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .appointmentButton {
    display: none;
  }
  .hero-section {
    padding: 20px !important;
  }
  .hero-section h1 {
    font-size: 25px;
  }
  

  .flexDirection {
    flex-direction: column;
  }
  .service-container {
    padding: 20px;
  }
  header h1 {
    font-size: 35px;
    text-align: center;
  }
  .footerbody {
    padding: 20px !important;
    align-items: center;
    margin: auto;
    gap: 0 !important;
  }
  .heroButon button {
    font-size: 15px !important;
  }
  .heroText h1 {
    margin-top: 30px;
  }
  .header h1 {
    font-size: 35px !important;
  }
  .header p {
    font-size: 20px !important;
  }
  svg {
    margin-right: 0 !important;
  }
  
}
