@import url("https://fonts.googleapis.com/css2?family=Acme&display=swap");

:root {
  --brand-magenta: #d81b60;
  --brand-blue: #2563eb;
  --body-font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --heading-font: "Acme", sans-serif;
}

body {
  font-family: var(--body-font);
  color: #1e293b;
  background-color: #f8fafc;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--heading-font);
  font-weight: 400;
  color: #0f172a;
}

.navbar-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent !important;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 10%;
  padding-right: 10%;
  border-bottom: none;
  transition: all 0.3s ease;
}

.navbar-transparent .nav-link {
  color: #000 !important;
  font-weight: 400;
  font-size: 16px;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-transparent .nav-link:hover,
.navbar-transparent .nav-link.active {
  color: var(--brand-magenta) !important;
}

/* Ken Burns Slider Styling */
.kenburns-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.kenburns-carousel .carousel-inner,
.kenburns-carousel .carousel-item {
  height: 100%;
}

.kenburns-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Ken Burns Zoom Keyframes */
@keyframes kenburns-zoom {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.12);
  }
}

.kenburns-carousel .carousel-item.active img {
  animation: kenburns-zoom 12s ease-out forwards;
}

/* Image overlay gradient to fade right side for text readability */
.carousel-zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.55) 45%,
    rgba(255, 255, 255, 0.85) 75%,
    rgba(255, 255, 255, 0.9) 100%
  );
  z-index: 1;
}

/* Custom layout for caption/text overlay on the right */
.carousel-caption-custom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
}

.welcome-text {
  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: 600;
  font-style: italic;
  color: #000;
}

.dots {
  font-size: 2.5rem;
  line-height: 0.5;
  color: #1e293b;
  letter-spacing: 4px;
}

.brand-heading {
  font-family: var(--heading-font);
  color: #b40c69;
  font-size: 24px;
  font-weight: 600;
}

.desc-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #000 !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .carousel-zoom-overlay {
    background: rgba(255, 255, 255, 0.9);
  }
  .welcome-text {
    font-size: 1.8rem;
  }
  .brand-heading {
    font-size: 1.7rem;
  }
  .desc-text {
    font-size: 0.95rem;
  }
  .navbar-transparent {
    background-color: rgba(255, 255, 255, 0.98) !important;
    position: relative;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  .navbar-transparent .nav-link {
    padding: 0.5rem 0.75rem !important;
  }
}

/* Custom Dropdown Styling */
.navbar-transparent .dropdown-menu {
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
  padding: 0.5rem 0;
  min-width: 250px;
}

.navbar-transparent .dropdown-item {
  color: #334155 !important;
  font-size: 15px;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  transition: all 0.25s ease;
}

.navbar-transparent .dropdown-item:hover {
  background-color: rgba(216, 27, 96, 0.05) !important;
  color: var(--brand-magenta) !important;
  padding-left: 1.55rem;
}

/* Mobile Dropdown Scrollability */
@media (max-width: 991px) {
  .navbar-transparent .dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
  }
}

/* Hover-to-Open Dropdown logic for Desktop */
@media (min-width: 992px) {
  .navbar-transparent .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeInDropdown 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

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

/* About Us & Doctor Section Styles */
.doctor-photo-wrapper {
  display: inline-block;
  border-radius: 50%;
  padding: 8px;

  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}
.about-container {
  padding-left: 10%;
  padding-right: 10%;
}
.doctor-photo-wrapper:hover {
  transform: translateY(-5px);
}

.doctor-avatar {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
}

.doctor-role-title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 1.15rem;
  color: #1e293b;
}

/* Social icons underneath photo */
.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff !important;
  font-size: 1.1rem;
  transition: all 0.25s ease;
}

.btn-youtube {
  background-color: #ff0000;
}
.btn-facebook {
  background-color: #3b5998;
}
.btn-instagram {
  background-color: #e1306c;
}

.social-icon-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Pink read more button */
.btn-brand-outline {
  font-family: var(--heading-font);
  color: var(--brand-magenta) !important;
  border: 1px solid var(--brand-magenta);
  background-color: transparent;
  border-radius: 4px;
  transition: all 0.25s ease;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn-brand-outline:hover {
  background-color: var(--brand-magenta);
  color: #fff !important;
}

/* Pink Marquee Banner */
.pink-marquee-banner {
  background-color: #c33d87;
}

.pink-marquee-banner marquee {
  font-family: var(--body-font);
}

/* Fixed Cosmetology Services Section */
.cosmetology-section {
  position: relative;
  /* Parallax fixed background using layered fallbacks */
  background:
    linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.88)),
    url("assets/images/Services-bg.jpeg"),
    url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&q=80&w=1920")
      no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Fixed image parallax effect */
  overflow: hidden;
  padding-left: 10%;
  padding-right: 10%;
}

.service-blob-wrapper {
  display: inline-block;
  position: relative;
  width: 220px;
  height: 200px;

  /* Organic blob shape */

  padding: 6px;
  background: transparent;
  overflow: hidden;
}

.service-blob-img {
  width: 100%;
  height: 220px;

  transition: transform 0.5s ease;
}

.service-blob-wrapper:hover .service-blob-img {
  transform: scale(1.08);
}

.service-title-link {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: #ffffff;
  transition: all 0.25s ease;
  display: inline-block;
}

.service-title-link:hover {
  color: var(--brand-magenta) !important;
  text-decoration-color: var(--brand-magenta);
  transform: translateY(-2px);
}

.videos-facilities-section {
  padding-left: 6%;
  padding-right: 6%;
}
.facility-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.35s ease;
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
  border-color: rgba(216, 27, 96, 0.2);
}

.facility-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 4px;
}

.facility-card-title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--brand-magenta);
  margin-top: 14px;
  margin-bottom: 0;
}

.btn-pill-brand {
  font-family: var(--heading-font);
  background-color: var(--brand-magenta);
  color: #ffffff !important;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(216, 27, 96, 0.2);
  font-size: 16px;
  font-weight: 500;
}

.btn-pill-brand:hover {
  background-color: #b0134b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 27, 96, 0.35);
}

.stats-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;

  background: url("assets/images/counter-bg.jpg") center center/cover no-repeat;
  background-attachment: fixed; /* Fixed image parallax effect */
  padding-left: 10%;
  padding-right: 10%;
}

/* Black Overlay */
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9); /* 70% black overlay */
  z-index: 1;
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

/* Card Design */
.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 24px 20px; /* Reduced from 35px 25px */
  height: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(216, 27, 96, 0.25);
  border-color: var(--brand-magenta); /* Interactive magenta border on hover */
  background: rgba(216, 27, 96, 0.06);
}

.stat-icon {
  width: 48px; /* Reduced from 70px */
  height: 48px; /* Reduced from 70px */
  object-fit: contain;
  margin-bottom: 16px;
  transition: transform 0.35s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
}

.stat-card h2 {
  color: #ffffff;
  font-size: 43px; /* Reduced from 3rem */
  font-weight: 400;
  margin-bottom: 8px;
}

.stat-card p {
  color: #ffffff;
  font-size: 20px; /* Reduced from 1.1rem */
  margin-bottom: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .stats-section {
    padding: 80px 0;
  }

  .stat-card h2 {
    font-size: 1.9rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .stats-section {
    padding: 60px 0;
  }

  .stat-card {
    padding: 20px 15px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-card h2 {
    font-size: 1.6rem;
  }

  .stat-card p {
    font-size: 0.88rem;
  }
}

/* Contact Us Section Styles */
.contact-section {
  position: relative;
  padding: 80px 0;
  background-image: url("assets/images/contact-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  color: #ffffff;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(
    18,
    18,
    18,
    0.82
  ); /* Dark, high-contrast overlay to ensure white text readability */
  z-index: 1;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-title {
  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: 600;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.contact-dots {
  font-size: 2.2rem;
  line-height: 0.5;
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: 4px;
}

.contact-address {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #e2e8f0;
  max-width: 480px;
  margin: 0 auto 35px auto;
}

.contact-call-heading {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.btn-contact-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--brand-magenta);
  color: #ffffff !important;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 17px;
  padding: 10px 30px;
  border-radius: 50px;
  border: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(216, 27, 96, 0.35);
  text-decoration: none;
}

.btn-contact-call:hover {
  background-color: #b0134b;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(216, 27, 96, 0.5);
}

.btn-contact-call i {
  font-size: 1.35rem;
}

@media (max-width: 767px) {
  .contact-section {
    padding: 60px 0;
  }
  .contact-title {
    font-size: 1.9rem;
  }
  .contact-address {
    font-size: 0.98rem;
  }
  .contact-call-heading {
    font-size: 1.2rem;
  }
  .btn-contact-call {
    font-size: 1.1rem;
    padding: 10px 25px;
  }
}

/* Footer Styles */
.main-footer {
  background-color: #ffd2dc; /* Soft light pink background */
  color: #2d3748; /* Dark charcoal text */
  padding: 50px 8%;
  font-family: var(--body-font);
}

.main-footer h3 {
  font-family: var(--heading-font);
  color: #000; /* Dark navy headings */
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-about-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 24px;
}

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

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--brand-magenta);
  color: #ffffff !important;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-btn:hover {
  background-color: #b0134b;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(216, 27, 96, 0.35);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-contact-item i {
  font-size: 1.25rem;
  color: #000; /* Dark navy for icons */
  margin-top: 3px;
}

.footer-contact-item p {
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
  margin-bottom: 0;
}

.footer-contact-item a {
  color: #2563eb; /* Clickable link blue */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.footer-contact-item a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.footer-map-container {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f1f5f9;
}

.footer-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-bottom {
  background-color: #000; /* Dark copyright bar */
  padding: 10px 0;
}

.footer-bottom-text {
  font-size: 0.9rem;
  color: #e2e8f0;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

@media (max-width: 991px) {
  .main-footer {
    padding-top: 50px;
  }
  .main-footer h3 {
    margin-top: 20px;
    font-size: 1.4rem;
  }
  .footer-map-container {
    height: 200px;
  }
}

/* ==========================================================================
   Skin Page Specific Styles
   ========================================================================== */

.skin-banner,
.hair-banner,
.eyebrow-banner,
.microblading-banner,
.lip-coloring-banner,
.laser-banner,
.bb-glow-banner,
.scalp-micro-banner,
.gynaecology-banner,
.pediatrics-banner,
.maternity-banner,
.vampire-facial-banner,
.hydra-facial-banner,
.bollywood-facial-banner,
.lip-peeling-banner,
.skin-polishing-banner,
.facilities-banner,
.about-banner,
.gallery-banner,
.video-banner,
.contact-banner,
.faq-banner {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  margin-top: 130px;
}

.skin-banner {
  background-image: url("assets/images/skin-bg.jpg");
}

.hair-banner {
  background-image: url("assets/images/hair-bg.jpg");
}

.eyebrow-banner {
  background-image: url("assets/images/eyebrow-shading.png");
}

.microblading-banner {
  background-image: url("assets/images/micro-bladding.png");
}

.lip-coloring-banner {
  background-image: url("assets/images/Lip-Coloring-bg.jpg");
}

.laser-banner {
  background-image: url("assets/images/laser-bg.jpg");
}

.bb-glow-banner {
  background-image: url("assets/images/bb-glow-bg.jpg");
}

.scalp-micro-banner {
  background-image: url("assets/images/Scalp-Micro-bg.jpg");
}

.gynaecology-banner {
  background-image: url("assets/images/Gynaecology-bg.jpg");
}

.pediatrics-banner {
  background-image: url("assets/images/Pediatrics-bg.jpg");
}

.maternity-banner {
  background-image: url("assets/images/Maternity-bg.jpg");
}

.vampire-facial-banner {
  background-image: url("assets/images/Vampire-Facial-bg.jpg");
}

.hydra-facial-banner {
  background-image: url("assets/images/Hydra-Facial-bg.jpg");
}

.bollywood-facial-banner {
  background-image: url("assets/images/Bollywood-Facial-bg.jpg");
}

.lip-peeling-banner {
  background-image: url("assets/images/Lip-Peeling-bg.jpg");
}

.skin-polishing-banner {
  background-image: url("assets/images/Skin-Polishing-bg.jpg");
}

.facilities-banner {
  background-image: url("assets/images/Facilities-bg.jpg");
}

.about-banner {
  background-image: url("assets/images/about-banner-bg.png");
  background-position: center center;
}

.gallery-banner {
  background-image: url("assets/images/Gallery-bg.jpg");
}

.video-banner {
  background-image: url("assets/images/Gallery-bg.jpg");
}

.contact-banner {
  background-image: url("assets/images/contact-page-bg.jpg");
}

.faq-banner {
  background-image: url("assets/images/contact-page-bg.jpg");
}

.skin-banner::before,
.hair-banner::before,
.eyebrow-banner::before,
.microblading-banner::before,
.lip-coloring-banner::before,
.laser-banner::before,
.bb-glow-banner::before,
.scalp-micro-banner::before,
.gynaecology-banner::before,
.pediatrics-banner::before,
.maternity-banner::before,
.vampire-facial-banner::before,
.hydra-facial-banner::before,
.bollywood-facial-banner::before,
.lip-peeling-banner::before,
.skin-polishing-banner::before,
.facilities-banner::before,
.about-banner::before,
.gallery-banner::before,
.video-banner::before,
.contact-banner::before,
.faq-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 2;
}

.skin-banner-content,
.hair-banner-content,
.eyebrow-banner-content,
.microblading-banner-content,
.lip-coloring-banner-content,
.laser-banner-content,
.bb-glow-banner-content,
.scalp-micro-banner-content,
.gynaecology-banner-content,
.pediatrics-banner-content,
.maternity-banner-content,
.vampire-facial-banner-content,
.hydra-facial-banner-content,
.bollywood-facial-banner-content,
.lip-peeling-banner-content,
.skin-polishing-banner-content,
.facilities-banner-content,
.about-banner-content,
.gallery-banner-content,
.video-banner-content,
.contact-banner-content,
.faq-banner-content {
  position: relative;
  z-index: 3;
}

.skin-banner-title,
.hair-banner-title,
.eyebrow-banner-title,
.microblading-banner-title,
.lip-coloring-banner-title,
.laser-banner-title,
.bb-glow-banner-title,
.scalp-micro-banner-title,
.gynaecology-banner-title,
.pediatrics-banner-title,
.maternity-banner-title,
.vampire-facial-banner-title,
.hydra-facial-banner-title,
.bollywood-facial-banner-title,
.lip-peeling-banner-title,
.skin-polishing-banner-title,
.facilities-banner-title,
.about-banner-title,
.gallery-banner-title,
.video-banner-title,
.contact-banner-title,
.faq-banner-title {
  font-family: var(--heading-font);
  font-size: 42px;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

.skin-intro-section {
  padding: 80px 0 40px;
  background-color: #ffffff;
}

.skin-intro-title {
  color: var(--brand-magenta);
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 5px;
}

.condition-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  padding: 40px;
  margin-bottom: 40px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.condition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(216, 27, 96, 0.06);
}

.condition-card.alt-bg {
  background-color: #fffafb;
}

.condition-title {
  color: var(--brand-magenta);
  font-family: var(--heading-font);
  font-size: 28px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.condition-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50px;
  height: 3px;
  background-color: var(--brand-magenta);
  border-radius: 2px;
}

.condition-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #000;
}

.condition-img-wrapper {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  background-color: #f8fafc;
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.condition-img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.condition-card:hover .condition-img {
  transform: scale(1.05);
}

.condition-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.condition-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.condition-list li::before {
  content: "•";
  color: var(--brand-magenta);
  font-size: 1.5rem;
  position: absolute;
  left: 5px;
  top: -4px;
}

/* Specific styling adjustments for vertical orientation */
@media (max-width: 991px) {
  .skin-banner,
  .hair-banner,
  .eyebrow-banner,
  .microblading-banner,
  .lip-coloring-banner,
  .laser-banner,
  .bb-glow-banner,
  .scalp-micro-banner,
  .gynaecology-banner,
  .pediatrics-banner,
  .maternity-banner,
  .vampire-facial-banner,
  .hydra-facial-banner,
  .bollywood-facial-banner,
  .lip-peeling-banner,
  .skin-polishing-banner,
  .facilities-banner,
  .about-banner,
  .gallery-banner,
  .video-banner,
  .contact-banner,
  .faq-banner {
    height: 250px;
    margin-top: 0;
  }
  .skin-banner-title,
  .hair-banner-title,
  .eyebrow-banner-title,
  .microblading-banner-title,
  .lip-coloring-banner-title,
  .laser-banner-title,
  .bb-glow-banner-title,
  .scalp-micro-banner-title,
  .gynaecology-banner-title,
  .pediatrics-banner-title,
  .maternity-banner-title,
  .vampire-facial-banner-title,
  .hydra-facial-banner-title,
  .bollywood-facial-banner-title,
  .lip-peeling-banner-title,
  .skin-polishing-banner-title,
  .facilities-banner-title,
  .about-banner-title,
  .gallery-banner-title,
  .video-banner-title,
  .contact-banner-title {
    font-size: 22px;
  }
  .condition-card {
    padding: 25px;
  }
  .condition-title {
    font-size: 24px;
  }
  .condition-img-wrapper {
    margin-top: 30px;
  }
  /* On mobile, keep layout stacked and center the images */
  .order-md-2 {
    order: 0 !important;
  }
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.floating-btn.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff !important;
  font-size: 28px;
}

.floating-btn.btn-clinic {
  background-color: var(--brand-magenta);
  color: #ffffff !important;
}

.floating-btn.btn-clinic svg {
  width: 28px;
  height: 28px;
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
  .floating-actions {
    left: 10px;
    gap: 10px;
  }
  .floating-btn {
    width: 42px;
    height: 42px;
  }
  .floating-btn.btn-whatsapp {
    font-size: 22px;
  }
  .floating-btn.btn-clinic svg {
    width: 22px;
    height: 22px;
  }
}

/* ==========================================================================
   Facilities Page Specific Styles
   ========================================================================== */

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.facility-grid-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.facility-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(216, 27, 96, 0.12);
  border-color: rgba(216, 27, 96, 0.2);
}

.facility-grid-img-wrapper {
  border: 1px solid #e2e8f0; /* Gray border around the image */
  padding: 8px;
  background-color: #ffffff;
  border-radius: 4px;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.facility-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.5s ease;
}

.facility-grid-card:hover .facility-grid-img {
  transform: scale(1.05);
}

.facility-grid-title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-magenta);
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 1.35;
  transition: color 0.3s ease;
}

/* Responsiveness for Grid */
@media (max-width: 1200px) {
  .facilities-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .facilities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .facility-grid-card {
    padding: 12px;
  }
  .facility-grid-title {
    font-size: 0.92rem;
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .facility-grid-card {
    padding: 8px;
  }
  .facility-grid-title {
    font-size: 0.85rem;
    margin-top: 8px;
  }
}

/* ==========================================================================
   About Us Page Specific Styles
   ========================================================================== */

.profile-row {
  margin-bottom: 60px;
}

.profile-card {
  background-color: #f8fafc; /* Soft light grey-blue */
  border-radius: 12px;
  padding: 40px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-decor-line {
  width: 50px;
  height: 4px;
  background-color: var(--brand-magenta);
  margin-bottom: 20px;
  border-radius: 2px;
}

.profile-name {
  font-family: var(--heading-font);
  font-size: 28px;
  color: #0f172a;
  margin-bottom: 20px;
}

.profile-text {
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 16px;
}

.profile-img-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.profile-img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-img-wrapper:hover .profile-img {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .profile-row {
    margin-bottom: 40px;
  }
  .profile-card {
    padding: 30px;
  }
  .profile-name {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .profile-text {
    font-size: 14px;
  }
}

/* ==========================================================================
   Gallery Page Specific Styles
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.gallery-item-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.gallery-img-box {
  background: #ffffff;
  border: 2px solid var(--brand-magenta);
  border-radius: 4px;
  padding: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  width: 100%;
  aspect-ratio: 1.1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-img-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(216, 27, 96, 0.15);
  border-color: #b0134b;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.gallery-item-title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 1.1rem;
  color: #1e293b;
  margin-top: 15px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.gallery-item-container:hover .gallery-item-title {
  color: var(--brand-magenta);
}

/* Responsiveness */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .gallery-img-box {
    aspect-ratio: 1.2 / 1;
  }
}

/* ==========================================================================
   Video Page Specific Styles
   ========================================================================== */

.video-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px auto 50px auto;
  max-width: 760px;
}

.video-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto 50px auto;
  max-width: 680px;
}

.video-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.video-item-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.video-item-title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 1.05rem;
  color: #1e293b;
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.video-item-container:hover .video-item-title {
  color: var(--brand-magenta);
}

.video-player-card {
  background: #ffffff;
  border: 1px solid var(--brand-magenta);
  border-radius: 6px;
  padding: 1px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  width: 100%;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000; /* Dark background for video container */
  overflow: hidden;
}

.video-player-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(216, 27, 96, 0.15);
  border-color: #b0134b;
}

.video-player-card video {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  display: block;
}

/* Aspect ratios for different grids */
.video-grid-2 .video-player-card {
  aspect-ratio: 1 / 1; /* Square-ish */
  max-width: 350px;
  margin: 0 auto;
}

.video-grid-2 .video-player-card video {
  object-fit: cover;
}

.video-grid-3 .video-player-card {
  aspect-ratio: 9 / 16; /* Portrait shorts ratio */
  max-width: 200px;
  margin: 0 auto;
}

.video-grid-3 .video-player-card video {
  object-fit: cover;
}

.video-grid-4 .video-player-card {
  aspect-ratio: 16 / 9; /* Landscape ratio for YouTube */
}

.video-grid-4 .video-player-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .video-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .video-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .video-grid-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .video-grid-3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .video-grid-3 .video-player-card {
    aspect-ratio: 1 / 1.35;
  }
}

@media (max-width: 576px) {
  .video-grid-4 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .video-item-title {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   Contact Page Specific Styles
   ========================================================================== */

.contact-info-col {
  padding-right: 20px;
}

.contact-info-title {
  color: var(--brand-magenta);
  font-family: var(--heading-font);
  font-size: 28px;
  margin-bottom: 25px;
}

.contact-sub-title {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.15rem;
  color: #1e293b;
  margin-top: 25px;
  margin-bottom: 15px;
}

.contact-clinic-name {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.05rem;
  color: #475569;
  margin-top: 15px;
  margin-bottom: 8px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #334155;
}

.contact-detail-item i {
  color: #0f172a;
  font-size: 1.1rem;
  margin-top: 2px;
}

.contact-help-box {
  margin-top: 40px;
}

.contact-help-title {
  color: var(--brand-magenta);
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.contact-help-phone {
  color: var(--brand-magenta);
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 2rem;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.25s ease;
}

.contact-help-phone:hover {
  transform: translateY(-2px);
  color: #b0134b;
}

/* Contact Form Card */
.contact-form-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-form-title {
  color: var(--brand-magenta);
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 25px;
  line-height: 1.35;
}

.contact-form-card label {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 8px;
  display: block;
}

.contact-form-card .form-control {
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 15px;
  color: #1e293b;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.contact-form-card .form-control:focus {
  border-color: var(--brand-magenta);
  box-shadow: 0 0 0 4px rgba(216, 27, 96, 0.08);
  outline: none;
}

.btn-contact-submit {
  background-color: #b566e6;
  color: #ffffff !important;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 16px;
  padding: 12px 35px;
  border-radius: 4px;
  border: none;
  transition: all 0.35s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(181, 102, 230, 0.25);
  margin-top: 15px;
}

.btn-contact-submit:hover {
  background-color: #9d4cd0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 102, 230, 0.4);
}

@media (max-width: 991px) {
  .contact-info-col {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .contact-form-card {
    padding: 30px;
    margin-top: 20px;
  }
  .contact-info-title {
    font-size: 24px;
  }
}

/* ==========================================================================
   Responsive and Mobile View Tweaks
   ========================================================================== */

/* Disable parallax fixed background on mobile/tablet to resolve lag and rendering issues */
@media (max-width: 991px) {
  .cosmetology-section,
  .stats-section,
  .contact-section {
    background-attachment: scroll !important;
  }
}

/* Resize logo and adjust padding on smaller devices to prevent toggler wrapping */
@media (max-width: 576px) {
  #logo-img {
    height: 55px !important;
  }
  #logo-fallback-container svg {
    width: 35px !important;
    height: 35px !important;
  }
  .logo-title {
    font-size: 1.1rem !important;
  }
  .logo-subtitle {
    font-size: 0.62rem !important;
    letter-spacing: 0px !important;
  }
  .navbar-transparent {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  
  /* Prevent large text wrapping issues on tiny devices */
  .welcome-text {
    font-size: 1.5rem !important;
  }
  .brand-heading {
    font-size: 1.4rem !important;
  }
  .skin-intro-title {
    font-size: 28px !important;
  }
}






/* ==========================================================================
   FAQ Page Specific Styles
   ========================================================================== */
.faq-question-btn {
  background: transparent;
  border: none;
  color: #000;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  padding: 10px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  transition: color 0.3s ease;
}
.faq-question-btn:hover,
.faq-question-btn:not(.collapsed) {
  color: var(--brand-magenta);
}
.faq-answer-content {
  font-size: 15px;
  color: #000;
  line-height: 1.6;
  padding-left: 15px;
  margin-bottom: 20px;
}
