/* ===== TOP BAR ===== */
.top-bar {
    background-color: #dea05c;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.top-bar .contact-left,
.top-bar .contact-right {
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .top-bar {
        text-align: center;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 5px;
    }
}


/* Remove default padding */
.navbar {
    padding: 0;
}

/* Logo section background */
.logo-section {
    background-color: #231F34;
    height: 70px;
}

/* Logo image */
.logo {
    height: 45px;
    margin-right: 10px;
}

/* Brand text */
.brand-text {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

/* Navbar links */
.navbar-nav .nav-link {
    color: #fff;
    margin-left: 20px;
    transition: 0.3s;
}

/* Hover */
.navbar-nav .nav-link:hover {
    color: #dea05c;
}

/* Mobile fix */
@media (max-width: 768px) {
    .logo-section {
        width: 100%;
        justify-content: center;
    }
}
 


/* Mobile fix */

.clinic-section {
  background-color: #ffffff;
}

.clinic-image img {
  width: 100%;
  border-radius: 10px;
}

.clinic-content h2 {
  color: #231F34;
}

.clinic-list li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #555;
}

.clinic-logos img {
  opacity: 0.8;
  transition: 0.3s;
}

.clinic-logos img:hover {
  opacity: 1;
}


.treatment-section {
  background: #f8f9fa;
}

.treatment-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.treatment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.treatment-card:hover img {
  transform: scale(1.08);
}

/* Overlay */
.treatment-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}

.treatment-overlay h5 {
  margin: 0;
  font-size: 18px;
}


.treatment-section {
  background: #f8f9fa;
}

.treatment-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 15px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.treatment-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.treatment-card h5 {
  margin-top: 12px;
  font-size: 16px;
  color: #231F34;
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


/* highlights */
.client-diaries {
  padding: 40px;
  text-align: center;
}

/* SCROLL CONTAINER */
.diary-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px;
}

/* FORCE 2 ITEMS ALWAYS */
.diary-card {
  flex: 0 0 50%;
  max-width: 50%;

  position: relative;
  padding-top: 125%; /* 4:5 */
  overflow: hidden;
  border-radius: 10px;
}

/* IMAGE */
.diary-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* highlights */


/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;600&display=swap');

/* ── Section ── */
.celebrity-section {
  background: #fff;
  font-family: 'Montserrat', sans-serif;
}

/* ── Title ── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  max-width: 520px;
  margin-inline: auto;
}

/* ── Card ── */
.celeb-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  aspect-ratio: 4 / 5;
}

.celeb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.celeb-card:hover .celeb-img {
  transform: scale(1.04);
}

/* ── Name Label ── */
.celeb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, #c9a96e, #e8c98a);
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.celeb-icon {
  font-size: 0.75rem;
  color: #7a5c20;
}

/* ── Carousel Indicators ── */
.celebrity-section .carousel-indicators {
  position: relative;
  margin-top: 18px;
  margin-bottom: 0;
}

.celebrity-section .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  opacity: 1;
  transition: background 0.3s;
}

.celebrity-section .carousel-indicators button.active {
  background-color: #c9a96e;
  width: 22px;
  border-radius: 4px;
}

/* ── Prev / Next Arrows ── */
.celeb-control {
  width: 38px;
  height: 38px;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.celeb-control.carousel-control-prev { left: -14px; }
.celeb-control.carousel-control-next { right: -14px; }

.celeb-arrow {
  color: #1a1a1a;
  font-size: 1.6rem;
  line-height: 1;
}

/* ── Responsive ── */
@media (max-width: 576px) {
  .celeb-label {
    font-size: 0.6rem;
    padding: 8px 10px;
  }
}


/* ── highlights complete ── */
 /* -    whatsapp code  - */

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  background: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wa-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.65);
  animation: none;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  font-family: 'Montserrat', sans-serif;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a1a1a;
  border-right: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Pulse animation */
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 16px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

  /* -    whatsapp code finish - */

  

/* -    Ourservice starts - */

/* ===========================
   WHY CELEBRITIES SECTION
=========================== */
.why-celeb-section {
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}

/* ── Top Header ── */
.why-celeb-header {
  background-color: #1e1b34;
  padding: 60px 0 70px;
  position: relative;
}

/* Subtle dot grid texture */
.why-celeb-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.why-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #c9a96e;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.why-desc {
  font-size: 0.88rem;
  line-height: 1.85;
  color: #a9a6bf;
  margin: 0;
}

/* ── Cards Row ── */
.why-cards-row {
  background: #fff;
}

/* ── Individual Card ── */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-right: 1px solid #eee;
}

.service-card:last-child {
  border-right: none;
}

/* Image */
.service-card-img {
  width: 100%;
  aspect-ratio: 3 / 3.5;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

/* Card Body */
.service-card-body {
  background: #fff;
  padding: 20px 18px 20px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-top: 3px solid #c9a96e;
}

.service-card-text {
  flex: 1;
}

.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.service-card-desc {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* Arrow Button */
.service-card-btn {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: #c9a96e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1;
  transition: background 0.3s, transform 0.3s;
  margin-top: 4px;
}

.service-card-btn:hover {
  background: #1e1b34;
  color: #fff;
  transform: scale(1.1);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .why-celeb-header {
    padding: 40px 0 50px;
  }

  .service-card-img {
    aspect-ratio: 1 / 1;
  }

  .service-card-body {
    padding: 14px 12px;
  }

  .service-card-title {
    font-size: 0.9rem;
  }

  .service-card-desc {
    font-size: 0.72rem;
  }

  .service-card-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
}

/* -    Ourservice ends - */

















  /* -   footer one start  - */

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background-color: #231F34;
  color: #ccc;
  padding-top: 60px;
  font-family: 'Montserrat', sans-serif;
}

/* ── Brand Title ── */
.footer-brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ── Section Titles ── */
.footer-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

/* ── Gold Divider ── */
.footer-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, #c9a96e, #e8c98a);
  border-radius: 2px;
  margin-bottom: 18px;
}

/* ── Description ── */
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #b0abbe;
}

/* ── Social Icons ── */
.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a96e;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

.social-icon:hover {
  background: #c9a96e;
  color: #231F34;
}

/* ── Quick Links ── */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #b0abbe;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links li a:hover {
  color: #c9a96e;
  padding-left: 6px;
}

.link-arrow {
  color: #c9a96e;
  font-size: 1.1rem;
  line-height: 1;
}

/* ── Contact List ── */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #b0abbe;
  line-height: 1.5;
}

.contact-icon {
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #b0abbe;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: #c9a96e;
}

/* ── Bottom Bar ── */
.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  font-size: 0.82rem;
  color: #7a7590;
}

.footer-credit {
  color: #c9a96e;
  font-size: 0.82rem;
}

/* ── Responsive ── */
@media (max-width: 576px) {
  .site-footer {
    padding-top: 40px;
    text-align: center;
  }

  .footer-divider {
    margin-inline: auto;
  }

  .footer-links li a {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom .container {
    text-align: center;
  }
}


    /* -   footer one code finish - */