* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff0f5;
}

.navbar {
  background: linear-gradient(to right, #ff85a2, #ffd3b4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: relative;
  font-family: 'Poppins', sans-serif;
  animation: slideDown 0.7s ease-in-out;
  z-index: 100;
}

@keyframes slideDown {
  from { top: -100px; opacity: 0; }
  to { top: 0; opacity: 1; }
}

.logo {
  font-family: 'Pacifico', cursive;
  font-size: 1.8rem;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #2e2e2e;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff7f0;
  list-style: none;
  padding: 0.5rem 0;
  display: none;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  min-width: 200px;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #ff85a2;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
  background: #ffe1e8;
  border-radius: 4px;
}

.auth-buttons {
  display: flex;
  gap: 0.5rem;
}

.btn {
  border: none;
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.login {
  background: #fff;
  color: #ff85a2;
}

.login:hover {
  background: #ff85a2;
  color: #fff;
}

.signup {
  background: #2e2e2e;
  color: #fff;
}

.signup:hover {
  background: #fff;
  color: #2e2e2e;
}

.toggle-btn {
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  color: #fff;
}


/* ............HOME................. */
/* Home Section */
.home {
  background-color: #fff0f5;
  padding: 4rem 2rem;
}

.home-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.home-content {
  flex: 1;
  min-width: 280px;
}

.home-content h1 {
  font-size: 6rem;
  font-family: 'Pacifico', cursive;
  color: #ff6f91;
  margin-bottom: 1rem;
}

.home-content p {
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 2rem;
  color: #333;
}

.home-content .btn.explore {
  background-color: #ff85a2;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.home-content .btn.explore:hover {
  background-color: #e76a89;
}


.home-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 320px;
  margin-top: 2rem;
}

.central-image img {
  width: 550px;
  height: 550px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  /* z-index: -1; */
  position: relative;
}

.circle-images {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none; /* avoid accidental hover clicks */
}

.circle-images img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: absolute;
  transition: transform 0.3s;
}

/* Position images around the central image */
.circle-images img:nth-child(1) { top: -80px; left: 10%; transform: translateX(-50%); }
.circle-images img:nth-child(2) { top: 340px; left: 100%; transform: translate(-50%, -50%); }
.circle-images img:nth-child(3) { top: 540px; left: 80%; transform: translate(-50%, -50%); }
.circle-images img:nth-child(4) { top: 580px; left: 37%; transform: translate(-50%, -50%); }
.circle-images img:nth-child(5) { top: 450px; left: 2%; transform: translate(-50%, -50%); }
.circle-images img:nth-child(6) { top: 220px; left: -1%; transform: translate(-50%, -50%); }
.circle-images img:nth-child(7) { top: 60px; left: 90%; transform: translate(-50%, -50%); }
.circle-images img:nth-child(8) { top: -50px; left: 55%; transform: translate(-50%, -50%); }

.circle-images img:hover {
  transform: scale(1.1);
}

/* ....................ABOUT................... */
.about-us {
  padding: 4rem 2rem;
  background-color: #fff;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: block;
  margin: auto;
}


.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #ff6f91;
  font-family: 'Pacifico', cursive;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.1rem;
  color: #333;
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
}


/* ...............SERVICE.................. */
.services {
  background-color: #fff7fb;
  padding: 4rem 2rem;
}

.services-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.services-wrapper h2 {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  color: #ff6f91;
  margin-bottom: 2rem;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.service-card i {
  font-size: 2.5rem;
  color: #ff85a2;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  font-family: 'Poppins', sans-serif;
}


/* ..............TESTIMONIES............. */
.testimonials {
  background-color: #fff0f7;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonials-wrapper {
  max-width: 1200px;
  margin: auto;
}

.testimonials-wrapper h2 {
  font-size: 2.5rem;
  font-family: 'Pacifico', cursive;
  color: #ff6f91;
  margin-bottom: 2.5rem;
}

.testimonial-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #ff85a2;
}

.testimonial-card h4 {
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #333;
}

.testimonial-card p {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  color: #555;
}


/* ...............CONTACT.................. */
.contact {
  background-color: #fff7fb;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-wrapper {
  max-width: 600px;
  margin: auto;
}

.contact-wrapper h2 {
  font-size: 2.5rem;
  font-family: 'Pacifico', cursive;
  color: #ff6f91;
  margin-bottom: 1rem;
}

.contact-wrapper p {
  font-size: 1.1rem;
  color: #444;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ffd3dc;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  background-color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff85a2;
  box-shadow: 0 0 0 2px rgba(255, 133, 162, 0.2);
}

.send-btn {
  background-color: #ff85a2;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.send-btn:hover {
  background-color: #e76a89;
}


/* ...............FOOTER............ */
.footer {
  background-color: #fff0f7;
  padding: 3rem 2rem 1rem;
  color: #444;
  font-family: 'Poppins', sans-serif;
}

.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-brand h3 {
  font-family: 'Pacifico', cursive;
  font-size: 1.8rem;
  color: #ff6f91;
}

.footer-brand p {
  margin-top: 0.5rem;
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.2rem;
  color: #ff6f91;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  color: #444;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff85a2;
}

.footer-social .social-icons a {
  font-size: 1.2rem;
  margin-right: 1rem;
  color: #444;
  transition: color 0.3s;
}

.footer-social .social-icons a:hover {
  color: #ff85a2;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid #ffe1ec;
  padding-top: 1rem;
}





/* Responsive */
@media (max-width: 768px) {
  .nav-links,
  .auth-buttons {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffb6c1;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem 0;
  }

  .nav-links.active,
  .auth-buttons.active {
    display: flex;
  }

  .nav-links li {
    margin: 0.5rem 0;
    text-align: center;
  }

  .auth-buttons {
    align-items: center;
    margin-top: 1rem;
  }

  .toggle-btn {
    display: block;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #ffd1dc;
    padding: 0;
    min-width: 100%;
  }

  .dropdown-menu li a {
    color: #2e2e2e;
  }
}
