/* Header Styling */
header {
  background-color: chocolate;
  overflow: hidden;
  padding: 15px 0;
  position: relative;
}

.scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.scroll-text {
  white-space: nowrap;
  display: inline-block;
  color: white;
  font-size: 1.8em;
  font-weight: bold;
  animation: scrollAnim 10s linear infinite alternate;
  position: relative;
}

@keyframes scrollAnim {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
    transform: translateX(-100%);
  }
}




/* Body Styling */
body {
  background-color: lavenderblush;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}


/* Banner Styling */
.banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.banner img {
    width: 100%;
    height: auto;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease-in-out;
}

.banner img.active {
    display: block;
    position: relative;
}


/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px 20px;
  margin: 10px;
}

.hamburger div {
  width: 30px;
  height: 4px;
  background-color: #ff4e50;
  margin: 5px 0;
  border-radius: 2px;
}

/* Button Container */
.nav-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px;
  margin-top: 20px;
}

.salon-button {
  background: linear-gradient(135deg, #ff4e50, #f9d423);
  border: none;
  color: white;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(255, 78, 80, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.salon-button:hover {
  box-shadow: 0 15px 25px rgba(249, 212, 35, 0.6);
  transform: translateY(-4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-buttons {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .nav-buttons.show {
    display: flex;
  }
}


/* Hero Section */
.home-hero {
  background: linear-gradient(135deg, #ff4e50, #f9d423);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.home-hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.home-hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.hero-btn {
  background-color: white;
  color: #ff4e50;
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  background-color: #fff3d3;
}

/* About Section */
.about-home, .why-choose, .book-now-cta {
  padding: 40px 20px;
  text-align: center;
}

.about-home p, .book-now-cta p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1em;
}

/* Why Choose Us */
.why-choose ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.why-choose li {
  font-size: 1.1em;
  margin: 10px 0;
}

/* CTA Section */
.book-now-cta {
  background-color: #fff0e6;
}


html {
  scroll-behavior: smooth;
}

.about-section {
  background-color: #fff0f5;
  padding: 60px 20px;
  text-align: center;
}

.about-section h2 {
  font-size: 36px;
  color: #ff4e50;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-section p {
  font-size: 18px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.about-gallery {
  overflow: hidden;
  position: relative;
  height: 160px;
}

.image-scroll {
  display: flex;
  gap: 30px;
  animation: scroll-left 20s linear infinite;
  align-items: center;
}

.image-scroll img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #ff4e50;
  transition: transform 0.4s;
  object-fit: cover;
}

.image-scroll img:hover {
  transform: scale(1.2);
  border-color: #f9d423;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Optional Responsive Fix */
@media (max-width: 600px) {
  .image-scroll img {
    width: 80px;
    height: 80px;
  }
}


.services-section {
  background: linear-gradient(to bottom, #fff5f7, #ffeef0);
  padding: 60px 20px;
  text-align: center;
}

.services-section h2 {
  font-size: 36px;
  color: #e91e63;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.transform-heading {
  margin-top: 60px;
}

.services-intro {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Overview Cards */
.service-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(255, 105, 135, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(233, 30, 99, 0.3);
}

.service-box img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #e91e63;
}

.service-box h3 {
  font-size: 20px;
  color: #d81b60;
  margin-bottom: 10px;
}

.service-box p {
  color: #555;
  font-size: 14px;
}

/* Before-After Cards */
.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(255, 105, 135, 0.15);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.03);
}

.service-card h3 {
  color: #c2185b;
  font-size: 18px;
  margin-bottom: 15px;
}

.image-pair {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.image-box {
  text-align: center;
}

.image-box img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #f06292;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-box img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #f06292;
}

.image-box p {
  margin-top: 8px;
  font-weight: bold;
  color: #666;
}

/* Responsive */
@media (max-width: 600px) {
  .services-section h2 {
    font-size: 28px;
  }

  .services-intro {
    font-size: 16px;
  }

  .service-box img,
  .image-box img {
    width: 90px;
    height: 90px;
  }
}


.book-now-section {
  background: linear-gradient(135deg, #f8bbd0, #f48fb1);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.book-now-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.book-now-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.book-btn {
  background: #ffffff;
  color: #d81b60;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.book-btn:hover {
  background: #d81b60;
  color: #fff;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  position: relative;
  animation: popupShow 0.3s ease-out;
}

@keyframes popupShow {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}

.popup-content h2 {
  margin-bottom: 20px;
  color: #d81b60;
  text-align: center;
}

.popup-content form input,
.popup-content form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.submit-btn {
  width: 100%;
  background: #d81b60;
  color: white;
  padding: 10px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #ad1457;
}



  /* Contact Us Section */
  .contact-section {
    background: #f9f4f8;
    padding: 50px 20px;
    max-width: 900px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(216, 27, 96, 0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .contact-form-container {
    flex: 1 1 400px;
  }

  .contact-section h2 {
    text-align: center;
    color: #d81b60;
    margin-bottom: 30px;
    font-size: 32px;
  }

  .contact-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-section input,
  .contact-section textarea {
    padding: 12px;
    border: 1px solid #d81b60;
    border-radius: 6px;
    font-size: 16px;
    resize: vertical;
  }

  .contact-section textarea {
    min-height: 100px;
  }

  .contact-section button {
    background: #d81b60;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: bold;
  }

  .contact-section button:hover {
    background: #ad1457;
  }

  /* Google Map Container */
  .map-container {
    flex: 1 1 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(216, 27, 96, 0.2);
  }

  .map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
  }

  /* Responsive */
  @media(max-width: 768px) {
    .contact-section {
      flex-direction: column;
      margin: 30px 10px;
    }
    .map-container iframe {
      min-height: 300px;
    }
  }


  /*scrool to up and whatsapp */
  /* Scroll to Top Button */
  #scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #d81b60;
    color: white;
    border: none;
    padding: 15px 18px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(216, 27, 96, 0.4);
    transition: background-color 0.3s, transform 0.3s ease;
    z-index: 10000;
    display: none; /* Initially hidden */
  }

  #scrollTopBtn:hover {
    background-color: #ad1457;
    transform: scale(1.1);
  }

  /* WhatsApp Button */
  #whatsappBtn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: white;
    border: none;
    padding: 15px 18px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
    transition: background-color 0.3s, transform 0.3s ease;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

  #whatsappBtn:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
  }

  /* SVG inside WhatsApp button */
  #whatsappBtn svg {
    width: 28px;
    height: 28px;
    fill: white;
  }



  /* Footer CSS */

.footer-section {
  background-color: #d81b60;
  color: white;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: left;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}

.footer-about h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-about p {
  font-size: 16px;
  line-height: 1.5;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 20px;
  margin-bottom: 15px;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ffb6c1;
}

.footer-contact p {
  font-size: 16px;
  margin-bottom: 8px;
}

.footer-social a {
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  color: #fff;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #ffb6c1;
}

.footer-bottom {
  text-align: center;
  padding: 15px 10px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 30px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-about,
  .footer-links,
  .footer-contact {
    flex: none;
    margin-bottom: 30px;
  }
}

.design-credit {
  font-size: 14px;
  margin-top: 5px;
  color: #ffb6c1;
}

.design-credit a {
  text-decoration: none;
}

.design-credit a:hover {
  text-decoration: underline;
}
