/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #ffffff;
  position: relative;
  z-index: 100;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #a855f7;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #a855f7;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.contact-btn {
  padding: 10px 20px;
  background: linear-gradient(to right, #a855f7, #ec4899);
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}


.services-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.services-section ul li {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.accordion-button {
  font-weight: 600;
}

