
/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #fdf5f9;
  color: #4a2f6c;
  line-height: 1.6;
}

/* Navigation */
nav.sticky-nav {
  background: #e9d6f7;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}
nav a {
  text-decoration: none;
  color: #6c3483;
  font-weight: bold;
}
.logo {
  height: 50px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(to right, #eac9f5, #e6ccff);
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.2rem;
}

/* Offerings Section */
.offerings {
  text-align: center;
  padding: 2rem;
}
.offerings h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.offering-card {
  margin: 1rem auto;
  padding: 1rem;
  background: #f3e5f5;
  border-radius: 10px;
  width: 80%;
  max-width: 400px;
  transition: transform 0.3s ease;
}
.offering-card:hover {
  transform: translateY(-5px);
}

/* Testimonials */
.testimonials {
  background: #f8e6ff;
  text-align: center;
  padding: 2rem;
}
.testimonials h2 {
  margin-bottom: 1rem;
}
.testimonial {
  display: none;
  font-style: italic;
}
.testimonial.active {
  display: block;
}
.slider-controls {
  margin-top: 1rem;
}
.slider-prev,
.slider-next {
  padding: 0.5rem 1rem;
  background: #ba68c8;
  color: white;
  border: none;
  border-radius: 20px;
  margin: 0 10px;
  cursor: pointer;
}

/* Contact Form */
.contact-form {
  background: #f3e5f5;
  padding: 2rem;
}
.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.contact-form form {
  max-width: 500px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1rem;
}
input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.submit-btn {
  padding: 0.75rem 1.5rem;
  background: #8e44ad;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}
.submit-btn:hover {
  background-color: #732d91;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
}
