/* Stylish Banner h1 Font */
.banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff0f6;
  text-shadow: 0 2px 12px rgba(180,123,72,0.08);
}
@media (max-width: 600px) {
  .banner h1 {
    font-size: 2rem;
  }
}
/* Loading Screen Styles */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fffafc;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
}
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.loader-spinner {
  width: 54px;
  height: 54px;
  border: 6px solid #e0cfc2;
  border-top: 6px solid #e75480;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 18px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.loader-text {
  color: #b47b48;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
/* Stylish Modal Form Inputs and Labels */
.modal-form .form-group {
  position: relative;
  margin-bottom: 1.3rem;
  width: 100%;
}
.modal-form label {
  font-size: 1rem;
  color: #b47b48;
  font-weight: 600;
  margin-bottom: 7px;
  letter-spacing: 0.5px;
  display: block;
  transition: color 0.2s;
}
.modal-form label span {
  color: #e75480;
  margin-left: 2px;
}
.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e0cfc2;
  border-radius: 8px;
  font-size: 1.05rem;
  background: #faf9f7;
  color: #333;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1.5px 6px rgba(180,123,72,0.04);
  outline: none;
}
.modal-form input:focus,
.modal-form textarea:focus {
  border: 1.5px solid #e75480;
  box-shadow: 0 2px 8px rgba(231,84,128,0.10);
}
.modal-form textarea {
  min-height: 48px;
  resize: vertical;
}
.modal-form input::placeholder,
.modal-form textarea::placeholder {
  color: #b47b48bb;
  font-size: 0.98rem;
  opacity: 1;
}
.modal-form .submit-btn {
  background: linear-gradient(90deg, #e75480 60%, #b47b48 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(231,84,128,0.10);
}
.modal-form .submit-btn:hover {
  background: linear-gradient(90deg, #b47b48 60%, #e75480 100%);
  box-shadow: 0 4px 16px rgba(231,84,128,0.18);
}
/* Modal for Get Price */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  padding: 2.2rem 2rem 1.5rem 2rem;
  max-width: 370px;
  width: 95vw;
  position: relative;
  animation: modalIn 0.4s cubic-bezier(0.4,0,0.2,1);
}
@keyframes modalIn {
  from { transform: scale(0.85) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #e75480;
  cursor: pointer;
  z-index: 10;
}
.modal-form h2 {
  color: #e75480;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}
.modal-success {
  color: #25d366;
  font-weight: 600;
  margin-top: 1.2rem;
  font-size: 1.1rem;
  text-align: center;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Contact Form Section */
.contact-form-section {
  background: #fff;
  padding: 40px 20px 30px 20px;
  max-width: 500px;
  margin: 40px auto 0 auto;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.08), 0 1.5px 6px rgba(0,0,0,0.04);
  text-align: center;
}
.contact-form-section h2 {
  margin-bottom: 24px;
  font-size: 2rem;
  color: #b47b48;
  font-weight: 600;
  letter-spacing: 1px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form-group label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}
.form-group label span {
  color: #b47b48;
  margin-left: 2px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e0cfc2;
  border-radius: 6px;
  font-size: 1rem;
  background: #faf9f7;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #b47b48;
  outline: none;
}
.submit-btn {
  background: linear-gradient(90deg, #b47b48 60%, #e0cfc2 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 10px;
}
.submit-btn:hover {
  background: linear-gradient(90deg, #a06a3a 60%, #cbb69b 100%);
}
/* Waxing Types Section */
.waxing-types-section {
  background: #fffafc;
  padding: 2.5rem 0 2rem 0;
  text-align: center;
}
.waxing-types-section h2 {
  color: #e75480;
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  font-weight: 700;
}
.waxing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.waxing-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(231,84,128,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
  padding: 1.2rem 1.2rem 1rem 1.2rem;
  width: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.waxing-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #e75480;
  box-shadow: 0 2px 8px rgba(231,84,128,0.10);
  transition: border 0.3s, box-shadow 0.3s;
}
.waxing-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0.5rem 0 1rem 0;
  color: #c13b6b;
}
.get-price-btn {
  background: #e75480;
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(231,84,128,0.12);
  transition: background 0.3s, transform 0.2s;
}
.get-price-btn:hover {
  background: #c13b6b;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 700px) {
  .waxing-cards {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .waxing-card {
    width: 90vw;
    max-width: 320px;
  }
}
/* Floating Contact Icon */
.floating-contact {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e75480;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(231,84,128,0.18);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.floating-contact img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin: 0;
}
.floating-contact:hover {
  background: #c13b6b;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 32px rgba(231,84,128,0.22);
}
/* Floating WhatsApp Icon */
.floating-whatsapp {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37,211,102,0.18);
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.floating-whatsapp img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin: 0;
}
.floating-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 32px rgba(37,211,102,0.22);
}
/* WhatsApp Icon Styling */
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: #25d3661a;
  padding: 0.35em 0.9em 0.35em 0.5em;
  border-radius: 22px;
  text-decoration: none;
  color: #25d366;
  font-weight: 600;
  font-size: 1.08rem;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(37,211,102,0.08);
}
.whatsapp-link:hover {
  background: #25d36622;
  box-shadow: 0 2px 8px rgba(37,211,102,0.13);
}
.whatsapp-icon {
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  vertical-align: middle;
}
/* Gallery Section */
.gallery-section {
  background: #fffafc;
  padding: 2.5rem 0 2rem 0;
  text-align: center;
}
.gallery-section h2 {
  color: #e75480;
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  font-weight: 700;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(231,84,128,0.10);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 2px solid #fff0f6;
}
.gallery-grid img:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 8px 32px rgba(231,84,128,0.18), 0 2px 8px rgba(0,0,0,0.06);
  border: 2px solid #e75480;
}
/* Testimonial Section */
.testimonial-section {
  background: #fff0f6;
  padding: 2.5rem 0 2rem 0;
  text-align: center;
}
.testimonial-section h2 {
  color: #e75480;
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  font-weight: 700;
}
.testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(231,84,128,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
  padding: 1.5rem 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  gap: 2rem;
}
.testimonial-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #e75480;
  box-shadow: 0 2px 8px rgba(231,84,128,0.10);
}
.testimonial-message {
  text-align: left;
}
.testimonial-message p {
  font-size: 1.13rem;
  color: #c13b6b;
  margin-bottom: 0.7rem;
  font-style: italic;
}
.testimonial-name {
  font-size: 1rem;
  color: #222;
  font-weight: 600;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    padding: 1.2rem 1rem;
    gap: 1.2rem;
  }
  .testimonial-message {
    text-align: center;
  }
}
html {
  scroll-behavior: smooth;
}
/* Choose Your Services Section */
html body{
  line-height: 1.6;
  background: #fffafc;
  color: #333;

}

.choose-services {
  background: #fffafc;
  padding: 2.5rem 0 2rem 0;
  text-align: center;
}

.choose-services h2 {
  color: #e75480;
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  line-height: 40px;
  font-weight: 700;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(231, 84, 128, 0.10), 0 1.5px 6px rgba(0, 0, 0, 0.04);
  padding: 1.2rem 1.2rem 1rem 1.2rem;
  width: 180px;
  text-align: center;
  text-decoration: none;
  color: #c13b6b;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.service-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #e75480;
  box-shadow: 0 2px 8px rgba(231, 84, 128, 0.10);
  transition: border 0.3s, box-shadow 0.3s;
}

.service-card span {
  font-size: 1.08rem;
  font-weight: 600;
  margin-top: 0.2rem;
  letter-spacing: 0.5px;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(231, 84, 128, 0.18), 0 2px 8px rgba(0, 0, 0, 0.06);
  background: #fff0f6;
}

.service-card:hover img {
  border: 3px solid #c13b6b;
  box-shadow: 0 4px 16px rgba(231, 84, 128, 0.18);
}

@media (max-width: 700px) {
  .service-cards {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .service-card {
    width: 90vw;
    max-width: 320px;
  }
}

/* Appointment Button */
.appointment-btn {
  background: #e75480;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 1.2rem;
  box-shadow: 0 2px 8px rgba(231, 84, 128, 0.12);
  transition: background 0.3s, transform 0.2s;
}

.appointment-btn:hover {
  background: #c13b6b;
  transform: translateY(-2px) scale(1.04);
}

/* Contact info styling */
.contact-info {
  background: #fff0f6;
  border: 1px solid #e75480;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  max-width: 350px;
  margin: 0 auto;
  color: #c13b6b;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(231, 84, 128, 0.08);
  position: fixed;
  bottom: 112px;
  z-index: 1;
}

.contact-info a {
  color: #1b1819;
  text-decoration: underline;
  word-break: break-all;
}

/* Responsive Navbar with Hamburger */
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
 
}

/* .navbar-logo {
  color: #d6336c;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
} */

.navbar-logo img{
  width: 60px;
  height: 60px;
  border-radius: 50px;
  
  /* z-index: 1001; */
}

.navbar-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.navbar-hamburger span {
  display: block;
  height: 4px;
  width: 26px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .navbar-menu {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    background: #222;
    flex-direction: column;
    align-items: center;
    display: none !important;
    padding: 1rem 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-30px);
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar-menu.active {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .navbar-menu li {
    margin: 0.7rem 0;
  }

  .navbar-hamburger {
    display: flex;
  }
}

@media (min-width: 769px) {
  .navbar-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    padding: 0;
  }

  .navbar-hamburger {
    display: none !important;
  }
}

/* Hamburger animation when active */
.navbar-hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar-hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Navbar styles */
.navbar {
  background: #222;
  padding: 0.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1002;
}

.navbar-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.navbar-menu li {
  margin: 0 1.5rem;
}

.navbar-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  display: inline-block;
}

/* .navbar-menu a:hover {
  background: #fff;
  color: #222;
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}



/* Banner Section */
.banner {
  background: url('banner.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.banner h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  text-align: start;
}

.banner p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.banner button {
  padding: 12px 25px;
  font-size: 1rem;
  background: #d6336c;
  border: none;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.banner button:hover {
  background: #a61e4d;
}

.contact-info {
  display: none;
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 15px;
  border-radius: 10px;
}

/* Services */
.services {
  padding: 50px 20px;
  text-align: center;
  background: #fff0f6;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #d6336c;
}

.services ul {
  list-style: none;
  font-size: 1.1rem;
}

.services ul li {
  margin: 10px 0;
}

/* About */
.about {
  padding: 50px 20px;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #d6336c;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer p {
  margin: 5px 0;
}

footer a {
  color: #ff77a9;
  text-decoration: none;
  margin: 0 10px;
  transition: 0.3s;
}

footer a:hover {
  color: #fff;
}

/* Responsive */
@media(max-width: 768px) {
  .banner h1 {
    font-size: 2.8rem;
    line-height: 69px;
    width: 40px;
    margin-right: 250px;
  }

  .artist p {
    font-size: 1rem;
    text-align: start;
    background-color: #222;
    padding: 12px;
    border-radius: 10px;
  }
}