html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.sidebar {
  transition: left 0.3s ease-out;
}

.show {
  left: 0;
  transition: 300ms linear;
}
.hide {
  left: -100%;
  transition: 300ms linear;
}
@media (max-width: 1000px) {
  .hero-section,
  #about,
  #founder {
    flex-direction: column;
  }
}

.menu,
.close {
  cursor: pointer;
}

.bg-beauty-gradient {
  background: linear-gradient(135deg, #fff0f6 0%, #f8f0ff 50%, #fff0f8 100%);
}

.section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(50px);
}











.service-card {
  position: relative;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.card-image {
  width: 100%;
  height: 100%;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-card:hover .card-overlay,
.service-card.active .card-overlay {
  transform: translateY(0);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.service-list li {
  padding: 4px 0;
  font-size: 1rem;
}

.card-button {
  display: inline-block;
  padding: 8px 16px;
  background: #ec4899;
  color: white;
  border-radius: 20px;
  text-align: center;
  font-weight: 500;
  transition: background 0.3s ease;
}

.card-button:hover {
  background: #db2777;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: white;
  color: #111;
  border: 2px solid #111;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #111;
  color: white;
}

.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  background: #25D366;
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #128C7E;
}

@media (max-width: 640px) {
  .service-card {
    height: 300px;
  }
  
  .card-overlay {
    transform: translateY(0);
    background: rgba(0,0,0,0.7);
    padding: 16px;
  }
  
  .card-title {
    font-size: 1.25rem;
  }
  
  .service-list li {
    font-size: 0.9rem;
  }
}