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

:root {
  --hover-color-button: #5e2390;
  --text-color: #ffffff;
  --text-color-dark: #5e2390;
  --font-size-base: 16px;
  --bg-color-button: #d966ff;
  --bg-section: #ffe6ff;
  --bg-section-lavander-soft: #f4f0ff;
  --bg-main-light: #f9f9f9;
  --white:white;
  --grey: #4a4a4a;
  --gold: #c28840;
  --text-color-grey: #555;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: var(--bg-main-light);
  color:var(--text-color-dark);
}

.logo img {
  height: 100px; /* adjust as needed */
  width: auto;
  display: block;
  
}



a {
  text-decoration: none;
  
}

header {
  background: var(--white);
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Navbar layout */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.navbar a {
  color: black;
  text-decoration: none;
  display: inline-block;           /* needed for transform to work well */
  transition: 
    color 0.3s ease, 
    transform 0.3s ease;
  transform: translateY(0);        /* start at normal position */
}

.navbar a:hover {
  color: #b24dcc;
  transform: translateY(-5px);     /* move text 5px upward */
}




/* Nav menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-menu li {
  position: relative;
}

/* Nav links */
.nav-menu li a {
  text-decoration: none;
  color: var(--text-color-dark);
  font-weight: 600;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 0.25rem;
  z-index: 999;
  flex-direction: column;
  padding: 0;      /* remove default padding */
  margin: 0;       /* remove default margin */
  list-style: none; /* remove bullets */
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1rem; /* uniform padding */
  color: var(--text-color-dark);
  text-decoration: none;  /* remove underline */
  white-space: nowrap;    /* prevent wrapping to new line */
}




.dropdown-menu li a:hover {
  background-color: #f0f0f0;
  color: #b24dcc;
}

/* Desktop hover */
.dropdown:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
}

/* Hamburger styles (mobile) */
.hamburger {
  display: none; /* hidden by default */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn-appointment, .btn-primary {
  background-color: var(--bg-color-button);
  color: var(--white) !important;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-appointment:hover {
  background-color: var(--hover-color-button);
  transform: translateY(-2px);
}




#services, #about, #contact h2 {
  text-align: center;
}

.services-section, .about-section, .contact-section {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;

}





.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-item {
  display: block;
  flex: 1 1 calc(33.333% - 20px);
  padding: 20px;
  border: 2px solid transparent;
  border-radius: 10px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  transition: 
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.service-item h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
  color: var(--gold);
}

.service-item:hover,
.service-item:focus {
  border-color: #d966ff;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(217, 102, 255, 0.3);
  outline: none;
  cursor: pointer;
}

.service-item p {
  margin: 0;
  color: var(--text-color-grey);
}





.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form textarea {
  height: 150px;
}


/* Hover effect */
.contact-form input:hover,
.contact-form textarea:hover,
.newsletter-form:hover
{
  border-color: var(--bg-color-button);   /* light */
}

/* Focus effect (when typing inside) */
.contact-form input:focus,
.contact-form textarea:focus,
.newsletter-form:focus
{
  border-color: var(--gold);   /* stronger */
  box-shadow: 0 0 5px rgba(194, 136, 64, 0.5);
  outline: none;
}



.hero-section {
  background: var(--white);
  color: var(--text-color-dark);
  text-align: center;
  padding: 4rem 2rem;
}


.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(90deg, #d966ff, #6a00b6);
  color: transparent; /* Hide default text color */
  
  /* Mask trick to show gradient through text */
  -webkit-mask-image: linear-gradient(#fff, #fff);
  -webkit-mask-clip: text;
  -webkit-mask-repeat: no-repeat;
  mask-image: linear-gradient(#fff, #fff);
  mask-clip: text;
  mask-repeat: no-repeat;
  
  display: inline-block; /* Prevent mask bleed */
}

.hero-section h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 0.5em auto 0;
  background: #d966ff;
  border-radius: 2px;
}

.hero-section h1 {
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.hero-section p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  color: var(--gold);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2); /* Optional readability boost */
}



.hero-section .btn-primary {
  display: inline-block;
  color: var(--text-color);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  margin-top: 1rem;
}




.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 2rem;
  background-color: var(--bg-section);
  width: 100%;
}

.stat-box {
  text-align: center;
  margin: 1rem;
  flex: 1 1 200px;
}


.stat-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.stat-icon {
  background-color: var(--bg-color-button);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-icon img {
  width: 32px;        /* adjust if needed */
  height: 32px;
  object-fit: contain;
  display: block;
  /* If your PNG is dark and you want it to appear white, uncomment: */
  /* filter: brightness(0) invert(1); */
}





.stat-number {
  font-size: 2rem;
  font-weight: 600;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-color-dark);
}


/*video container*/

.video-container {
  position: relative;
  max-height: 850px;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9; /* Automatically keeps widescreen ratio */
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-stop-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--bg-color-button);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  z-index: 2;
  transition: background 0.3s;
}

.play-stop-btn:hover {
  background-color: var(--hover-color-button);
}

.btn-primary:hover {
  background-color: var(--hover-color-button);
  
}



/*image section under header*/


/* Section container */
.image-gallery-section {
 
  height: 250px;
  padding: 5px 20px;
  text-align: center;
  background-color: var(--white); /* Light background for the section */
  width: 100%;

}

/* Image container for flex layout */
.image-container {
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between the images */
  flex-wrap: wrap; /* Allows images to wrap on smaller screens */
  margin-top: 20px;
}

/* Make sure images are the same size */
.gallery-img {
  width: 250px; /* Adjust the width of the images */
  height: 160px; /* Adjust the height to keep a uniform size */
  object-fit: cover; /* Keep aspect ratio without stretching */
  border-radius: 8px; /* Rounded corners for a smooth look */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover animation: scale and shadow */
.gallery-img:hover {
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Light shadow effect */
}

/* Optional: Custom link style to remove default underline */
.image-link {
  display: inline-block;
  text-decoration: none;
}

/* Optional: Optional heading or text under images (if needed) */
.image-gallery-section h2 {
  font-size: 24px;
  color: var(--text-color-dark);
  margin-bottom: 20px;
}


/*tex boxes*/

.quote-section {
  width: 100%;
  min-height: 400px;
  padding: 40px 0;
  background: linear-gradient(to right, #d9a7c7, #fffcdc);
  overflow: hidden;
  position: relative;
}

.quotes-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  transition: transform 1s ease;
  flex-wrap: wrap;
}

.quote-box {
  flex: 0 0 300px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px 20px 20px;
  color: #222;
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transform: translateX(-100%);
  opacity: 0;
  animation: slideIn 1s forwards;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-text {
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.quote-text::before {
  content: "“";
  font-size: 2.5rem;
  position: absolute;
  top: -10px;
  left: 0;
  color: #bbb;
  opacity: 0.4;
}

.author-info {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(
    90deg,
    #4b1c71,
    #732c9c,
    #4b1c71
  );
  box-shadow: 0 0 8px #4b1c71aa;
  z-index: 9999;
  transition: width 0.25s ease-out;
}


footer.footer {
  background-color:var(--grey);
  color: var(--white); /* Make all footer text white */
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* Group newsletter and working hours in a flex container */
.footer-news-hours-wrapper {
  flex: 1 1 400px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* Each section inside wrapper takes equal space */
.footer-newsletter,
.footer-hours {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}

/* Other styles unchanged */
.footer-logo-img {
  width: 140px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 4px var(--bg-color-button));
  background-color: var(--white);  /* helps contrast */
  padding: 8px;
  border-radius: 8px;       /* optional rounded edges */
}

.footer-about {
  font-size: 14px;
  line-height: 1.5;
  max-width: 250px;
}

.footer-section h3 {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
  width: fit-content;
  color: var(--white);
}

.footer-contact p,
.footer-hours p {
  font-size: 14px;
  margin: 6px 0;
}

.footer-social .social-icons {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background-color: var(--bg-color-button);
  color: var(--white);
  border-radius: 50%;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 2px 8px #e85ea288;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: var(--hover-color-button);
  color: var(--white);
}

.footer-newsletter form {
  display: flex;
  gap: 8px;
  max-width: 320px;
}

.footer-newsletter input[type="email_sub"] {
  flex-grow: 1;
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
}

.footer-newsletter button {
  padding: 10px 18px;
  background-color: var(--bg-color-button);
  color:var(--white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-newsletter button:hover {
  background-color: var(--hover-color-button);
  color: var(--white);
}

.footer-language {
  margin-bottom: 16px;
  position: relative;
  cursor: pointer;
  color: var(--white);
}

.footer-language .lang-current {
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.footer-language .language-menu {
  display: none;
  position: absolute;
  background: var(--bg-color-button);
  border: 1px solid var(--hover-color-button);
  list-style: none;
  padding: 8px 12px;
  margin-top: 8px;
  border-radius: 6px;
  z-index: 100;
}

.footer-language:hover .language-menu {
  display: block;
}

.footer-language .language-menu li a {
  display: block;
  color: var(--text-color);
  padding: 6px 0;
  text-decoration: none;
  font-size: 14px;
}

.footer-language {
  color: var(--white);
}

.footer-copy {
  font-size: 13px;
  color: var(--white);
  margin-top: 10px;
  text-align: center;
  width: 100%;
}


/**/

.footer-language {
  position: relative;
  font-size: 14px;
  color: var(--white);
}

.lang-current {
  display: flex;
 
  align-items: center;
  gap: 8px;
  color:var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.lang-current img.lang-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0,0,0,0.3);
}

.language-menu {
  display: none;
  position: absolute;
  top: 28px;
  width: 200px;
  left: 0;
  background-color: var(--bg-color-button);
  border: 1px solid var(--white);
  padding: 4px 0;
  border-radius: 6px;
  z-index: 100;
  list-style: none;
  min-width: 120px;
  
}

.language-menu li {
  padding: 0;
  margin: 0;
}

.language-menu li a {
  display: flex;
  align-items: center;
  gap: 4px;
  color:var(--white);
  text-decoration: none;
}

.language-menu li a:hover {
  color: var(--white);
  background-color: var(--hover-color-button);
  border-radius: 5px;
  padding: 5px 10px;

}

.language-menu li img {
  width: 18px;
  height: 14px;
  border-radius: 2px;
}

    /* Whole section split left/right */
    section.teeth-section {
      display: flex;
      width: 100%;
      height: 200px; /* default for larger screens */
      position: relative; /* ensure it stays in flow */
      z-index: 1; /* optional, makes sure it's above bg layers */
    }

    /* Left lilac text side */
    .text-side {
      flex: 1;
      background: var(--bg-color-button);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
    }
    
    .text-side h2 {
      margin: 0;
      font-size: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px; /* space between text and logo */
      flex-wrap: wrap; /* allows wrapping if needed */
    }
    
    .inline-logo {
      height: 3.2rem; /* match text size */
      vertical-align: middle;
    }
    

    /* Right slider side */
    .slider-container {
      flex: 2;
      position: relative;
      overflow: hidden;
      cursor: ew-resize;
    }

    .slider-container img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
    }

    .after-image {
      clip-path: inset(0 50% 0 0);
      z-index: 2;
    }

    .before-image {
      z-index: 1;
    }

    .slider-line {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 4px;
      background: white;
      left: 50%;
      transform: translateX(-2px);
      z-index: 3;
    }

    .slider-circle {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 20px;
      height: 20px;
      background: #fff;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      z-index: 4;
      box-shadow: 0 0 10px #000;
    }


.cont_text {

color: var(--text-color-grey);

}

.contact-form label {
  color: var(--text-color-grey); 
  font-size: 14px;
}


.footer-newsletter input[type="email_sub"]:focus
{
  border-color: var(--gold);   
  box-shadow: 0 0 5px rgba(194, 136, 64, 0.5);
  outline: none;
}

.director-section {
  background-color: #f9f9f9; /* light background */
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  margin: 20px auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.director-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.director-section p {
  font-size: 18px;
  color: #333;
  margin: 10px 0;
}

.director-section .director-link {
  display: inline-block;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(90deg, #d966ff, #b34cff);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.director-section .director-link:hover {
  background: linear-gradient(90deg, #b34cff, #d966ff);
  transform: scale(1.05);
}


.services_detail_def {
  background: linear-gradient(90deg, #d966ff, #b84bdb);
  color: #fff;
  padding: 50px 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 800px;
  margin: 40px auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services_detail_def h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.services_detail_def p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.services_detail_def:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/*whatsup and messanger start*/

/* --- WhatsApp Button --- */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  overflow: visible;
}
.whatsapp-btn i.fab.fa-whatsapp {
  z-index: 3;
  position: relative;
}
.whatsapp-btn i.mobile-icon {
  z-index: 3;
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 14px;
}

/* Pulsating wave effect */
.whatsapp-btn .wave {
  position: absolute;
  width: 70px;
  height: 70px;
  background: rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  animation: wavePulse 2.5s infinite;
  top: 0;
  left: 0;
  z-index: 1;
}
.whatsapp-btn .wave:nth-child(3) { animation-delay: 0.5s; }

@keyframes wavePulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.8); opacity: 0.3; }
  100% { transform: scale(2.5); opacity: 0; }
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

/* --- Messenger Button --- */
.messenger-btn {
  position: fixed;
  bottom: 110px; /* above WhatsApp */
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d966ff, #b8860b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.2s, box-shadow 0.2s;
}
.messenger-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* --- Messenger Greeting Popup --- */
#messenger-greeting {
  position: fixed;
  bottom: 180px;
  right: 20px;
  background: linear-gradient(135deg, #d966ff, #b8860b);
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  font-size: 16px;
  max-width: 220px;
  text-align: center;
  display: none;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease;
}


#messenger-greeting {
  position: fixed;
  bottom: 90px;
  right: 90px;
  width: 250px;
  background: var(--white);
  color: var(--bg-color-button);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  font-family: 'Arial', sans-serif;
  z-index: 10000;
  text-align: left;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#messenger-greeting p {
  margin: 5px 0;
}

#messenger-greeting .consultant-name {
  font-weight: bold;
  font-size: 16px;
}

#messenger-greeting .consultant-text {
  font-size: 14px;
}

#messenger-greeting:hover {
  transform: translateY(-5px);
  opacity: 0.95;
}


.testimonials {
  padding: 70px 20px;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.testimonials-header h2 {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(90deg, #d966ff, #6a00b6);
  color: transparent; /* Hide default text color */
  
  /* Mask trick to show gradient through text */
  -webkit-mask-image: linear-gradient(#fff, #fff);
  -webkit-mask-clip: text;
  -webkit-mask-repeat: no-repeat;
  mask-image: linear-gradient(#fff, #fff);
  mask-clip: text;
  mask-repeat: no-repeat;
  
  display: inline-block; /* Prevent mask bleed */
}

.testimonials-header p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 20px 20px 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.testimonial-card::before {
  content: "“";
  font-size: 3rem;
  color: var(--bg-color-button);
  position: absolute;
  top: 5px;
  left: 15px;
  opacity: 0.32;
}

.quote {
  font-size: 1rem;
  color: var(--grey);
  margin-bottom: 15px;
  line-height: 1.6;
}

.author {
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--gold);
}



/* Responsive styles */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    right: 20px;
    background: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-radius: 8px;
    width: 200px;
  }

  .nav-menu.active {
    display: flex;
  }




  .hamburger {
    display: flex;
  }
  .btn-appointment {
    width: 100%;
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    text-align: center;
    white-space: nowrap; /* ✅ Prevent line breaks */
  }



  .service-item {
    flex: 1 1 100%; /* 1 item per row on tablets and below */
  }





  .quote-box {
    flex: 0 0 90%;
    max-width: 90%;
  }
  .quotes-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-section {
    min-width: 100%;
  }
  .footer-news-hours-wrapper {
    display: flex;  
    flex-direction: column;
  }
  .footer-newsletter,
  .footer-hours {
    min-width: 100%;
  }
  .footer-newsletter form {
    display: flex;  
    flex-direction: column;
  }
  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
  }


  .image-gallery-section {
 
   display: none;
  }


  .dropdown-menu {
    position: relative;
    box-shadow: none;
    display: none;
  }
  .dropdown-menu.active {
    display: flex;
    flex-direction: column;
  }


  .dropdown-menu li{
   
   font-size: 0.8rem;
   max-width: 150px;
   padding:0;

  }

  section.stats-container {
    position: relative
    flex-direction: column; /* stack stats vertically */
    align-items: center;    /* center items on mobile */
    padding: 1rem;          /* reduce padding for smaller screens */
    top: 200px;


  }




  .text-side {
    display:none;
  
  }


.footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    min-width: 100%;
  }

  .footer-news-hours-wrapper {
    display: flex;          /* <– important */
    flex-direction: column; /* stack vertically */
  }

  .footer-newsletter,
  .footer-hours {
    width: 100%;
  }

  .footer-newsletter form {
    display: flex;
    flex-direction: column;
  }

  
 .quote-section {
 
    min-height: 800px;
   
  }
  

}

/* --- Mobile adjustments --
@media (max-width: 480px) {
  .whatsapp-btn i.mobile-icon { font-size: 12px; }
  .messenger-btn { width: 55px; height: 55px; font-size: 24px; bottom: 95px; }
  #messenger-greeting { max-width: 180px; font-size: 14px; bottom: 160px; }
}

- */


