* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Poppins, sans-serif !important;
  line-height: 1.6;
  /*font-weight: 600;*/
  width: 100%;
  
}

/* Navbar */
header {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 26px;
  color: #444;
}

nav { flex: 1; }

nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
  position: relative;
  justify-content: flex-end;
  text-transform: uppercase;
  margin-bottom: 0rem !important;
  margin-right: 66px !important;
}

nav ul li { position: relative; }

nav ul li a {
  text-decoration: none;
  color: #000 !important;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 10px;
  display: block;
  cursor: pointer;
}

nav ul li:hover > a 
{ color: #c2769d;text-decoration:none; }

/* Dropdown menu */
nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  display: none;
  flex-direction: column;
  min-width: 200px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 999;
}

nav ul li ul li { border-bottom: 1px solid #eee; }

nav ul li ul li a {
  padding: 10px;
  color: #333;
  font-size: 14px;
}

nav ul li ul li a:hover {
  /*background: #f7f7f7;*/
  color: #c2769d;
}

nav ul li:hover ul { display: flex; }

/* Search + Button */
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-box input {
  padding: 7px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

.order-btn {
  padding: 8px 15px;
  background: #9C1D61;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #444;
  border-radius: 2px;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    display: none;
    background: #fff;
    width: 100%;
    padding: 10px 0;
  }
  nav ul.active {
    display: flex;
  }
  nav ul li ul {
    position: relative;
    box-shadow: none;
    border-top: 1px solid #eee;
  }
  .logo {
    margin-right: 15px;
  }
  .logo a {
    padding-left: 0px !important;
  }
  .hamburger {
    margin-left: 50px;
  }
}
@media (max-width: 768px) {
  .logo {
    font-size: 20px;
  }
  .hamburger {
    font-size: 26px;
    margin-left: 435px;
  }
  .wave-text {
    padding-left: 0px !important;
    font-size: 18px !important;
  }
  
}

@media (max-width: 480px) {
  .logo {
    font-size: 18px;
  }
  .hamburger {
    font-size: 24px;
    margin-left: 118px;
  }
}
@media (max-width: 380px) {
  .logo {
    font-size: 18px;
  }
  .hamburger {
    font-size: 24px;
    margin-left: 66px;
  }
}
@media (max-width: 1024px) {
  .logo {
    font-size: 15px;
  }
}
/*mouse name effect*/
/*.wave-text {
      font-size: 26px;
      font-weight: bold;
      color: #d1749b; 
      display: inline-block;
      cursor: pointer;
      padding-left: 70px;
    }

    .wave-text span {
      display: inline-block;
      transition: transform 0.3s ease;
    }

    .wave-text:hover span {
      animation: wave 0.6s ease forwards;
    }

    .wave-text:hover span:nth-child(1) { animation-delay: 0s; }
    .wave-text:hover span:nth-child(2) { animation-delay: 0.05s; }
    .wave-text:hover span:nth-child(3) { animation-delay: 0.1s; }
    .wave-text:hover span:nth-child(4) { animation-delay: 0.15s; }
    .wave-text:hover span:nth-child(5) { animation-delay: 0.2s; }
    .wave-text:hover span:nth-child(6) { animation-delay: 0.25s; }
    .wave-text:hover span:nth-child(7) { animation-delay: 0.3s; }
    .wave-text:hover span:nth-child(8) { animation-delay: 0.35s; }
    .wave-text:hover span:nth-child(9) { animation-delay: 0.4s; }
    .wave-text:hover span:nth-child(10){ animation-delay: 0.45s; }
    .wave-text:hover span:nth-child(11){ animation-delay: 0.5s; }
    .wave-text:hover span:nth-child(12){ animation-delay: 0.55s; }
    .wave-text:hover span:nth-child(13){ animation-delay: 0.6s; }
    .wave-text:hover span:nth-child(14){ animation-delay: 0.65s; }
    .wave-text:hover span:nth-child(15){ animation-delay: 0.7s; }
    .wave-text:hover span:nth-child(16){ animation-delay: 0.75s; }
    .wave-text:hover span:nth-child(17){ animation-delay: 0.8s; }

    @keyframes wave {
      0%   { transform: translateY(0); }
      30%  { transform: translateY(-10px); }
      60%  { transform: translateY(5px); }
      100% { transform: translateY(0); }
    }*/

/* Hero Section with Video */
.hero {
  position: relative;
  height: 85vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: -1;
}

.hero h1 {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero .btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .btns a {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 15px;
  transition: 0.3s;
}
.pro {
  background: #C2769D !important;
}
.pro:hover {
  border:1px solid #C2769D !important;
  background-color: #fff !important;
  color: #000 !important;
}

.btn-primary { background: #9C1D61; color: #fff; }
.btn-primary:hover { background: #a43c6d; }

.btn-outline { 
  border: 2px solid #fff; 
  color: #fff; 
}
.btn-outline:hover 
{ 
  background: #fff; 
  color: #333; 
}

/* Responsive */
@media(max-width: 992px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0px;
    /*width: 240px;*/
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }

  nav ul li { width: 100%; }

  nav ul li ul {
    position: static;
    display: none;
    box-shadow: none;
  }

  nav ul.show { display: flex; }

  nav ul li.open > ul { display: flex; }

  .hamburger { display: flex; }
  .search-box { display: none; }
}

@media(max-width: 768px) {
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 15px; }
  .hero { height: 65vh; }
  nav ul{
    gap: 6px !important;
    margin-right: 0px !important;
    padding-left: 20px;
  }
}

    .therapy-section {
  max-width: 1350px;
  margin: auto;
  text-align: center;
}


.swiper {
  padding-bottom: 30px;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  /*border-radius: 6px;*/
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
}

.swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.swiper-slide:hover img {
  transform: scale(1.05);
}
 /* Heading + Paragraph layout */
.therapy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 20px;
  /*gap: 20px;*/
}

.therapy-header h2 {
  flex: 0 0 30%;
  font-size: 28px;
  /*text-align: left;*/
  margin: 0;
  color: #9C1D61;
}

.therapy-header p {
  flex: 0 0 70%;
  font-size: 16px;
  text-align: left;
  margin: 0;
  line-height: 1.5;
  color: #444;
  padding: 30px;
}

/* Overlay (hidden until hover) */
.therapy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /*border: 1px solid #000;
width: 200px;
height: 200px;
margin: 0 auto;*/
}

.swiper-slide:hover .therapy-overlay {
  opacity: 1;
position: absolute;
top: 15px;
left: 16px;
border: 1px solid #e9e3e3;
width: 290px;
height: 371px;
margin: 0 auto;
}

/* Default title strip at bottom */
.therapy-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: rgba(255,255,255,0.8);
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #C2769D;
  transition: opacity 0.4s ease;
  height: 80px;
}

/* Hide bottom title when hover */
.swiper-slide:hover .therapy-title {
  opacity: 0;
}

/* Title inside overlay (hidden until hover) */
.therapy-overlay h3 {
  font-size: 20px;
  color: #c2769d;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.swiper-slide:hover .therapy-overlay h3 {
  opacity: 1;
  transform: translateY(0);
}

/* Button inside overlay */
.therapy-overlay a {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  color: #000;
  border: 1px solid #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.swiper-slide:hover .therapy-overlay a {
  opacity: 1;
  transform: translateY(0);
}

.therapy-overlay a:hover {
  background: #c2769d;
  color: #fff;
  text-decoration: none;
}

/* Bottom controls */
.bottom-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  margin-top: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  position: static;
  color: #444;
  background: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.view-all-therapies a {
  display: inline-block;
  padding: 12px 24px;
  background: #C2769D;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
  transition: 0.3s;
}

.view-all-therapies a:hover {
  background: #a43c6d;
  text-decoration: none;
  background: #fff;
  border: 1px solid #C2769D;
  color: #000;
}

/*.view-all a:hover {
  background: #a43c6d;
}*/

/* Responsive */
/* Responsive */
@media(max-width: 768px) {
  .bottom-controls {
    flex-direction: column;
    gap: 10px;
  }
  .swiper-button-next,
.swiper-button-prev {
position: absolute;   /* make absolute inside slider */
top: 50%;             /* vertically center */
transform: translateY(-50%);
width: 40px;
height: 40px;
}

.swiper-button-prev {
left: 10px;           /* left side */
}

.swiper-button-next {
right: 10px;          /* right side */
}

.bottom-controls {
flex-direction: column;
gap: 10px;
position: relative;
}
   .therapy-header {
flex-direction: column;  /* row → column */
align-items: center;     /* center align */
text-align: center;
}

.therapy-header h2,
.therapy-header p {
flex: unset;
width: 100%;
text-align: center;
}

.therapy-header h2 {
margin-bottom: 10px;
font-size: 24px;
}

.therapy-header p {
font-size: 15px;
}
}
    footer {
  background: #2C3C3C;
  color: #fff;
  padding: 40px 100px 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 35px;
}

.footer-logo img {
  height: 40px;
}

.newsletter {
  text-align: right;
  display: none;
}

.newsletter h3 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 600;
}

.newsletter p {
  margin: 0 0 10px;
  font-size: 14px;
  color: #ccc;
}

.newsletter form {
  display: flex;
}

.newsletter input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  outline: none;
  border-radius: 4px 0 0 4px;
  flex: 1;
}

.newsletter button {
  padding: 10px 20px;
  border: none;
  background: #9C1D61;
  color: #fff;
  font-weight: bold;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

/* Footer links */
.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-column {
  flex: 1 1 110px;
  margin: 10px;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #fff;
}

/* Social + Address */
.social {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.social a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #1e3a39;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.social a:hover {
  background: #C2769D;
  color: #fff;
  text-decoration: none;
}

.address {
  font-size: 14px;
  color: #ccc;
}

.address i {
  margin-right: 8px;
  color: #fff;
}

.phone {
  font-size: 16px;
  font-weight: bold;
  margin-top: 8px;
}

.phone i {
  margin-right: 8px;
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}

.footer-bottom a {
  color: #ccc;
  margin: 0 8px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter {
    text-align: left;
    margin-top: 20px;
    width: 100%;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter input[type="email"] {
    border-radius: 4px;
    margin-bottom: 10px;
    width: 100%;
  }

  .newsletter button {
    border-radius: 4px;
    width: 100%;
  }

  .footer-links {
    flex-direction: row;
  }
}

  :root{
--center-pct:0.6;       /* center visible percent */
--side-visible-pct:0.2; /* side slides visible percent */
--gap:20px;
--card-h:420px;
--anim-ms:420ms;
--accent:#c2769d;
--bg:#fbecf0;
}
*{box-sizing:border-box;}

.wrap{
  max-width:1280px;
  margin:36px auto;
  padding:0;
}
h2{margin:0 0 6px;font-size:24px;}
p.lead
{
  margin:0 0 24px;
  color:#1b1b1b;
  text-align: center;
}

/* new wrapper to hide scrollbar but allow side images */
.carousel-outer{
  position: relative;
  width:100%;
  overflow-x:hidden;
}

.carousel{
  position: relative;
  width:100%;
  height:var(--card-h);
  overflow: visible; /* allow full side images to show */
}

.card{
  position:absolute !important;
  top:0;
  height:100%;
  /*border-radius:10px;*/
  background:#fff;
  /*box-shadow:0 8px 28px rgba(0,0,0,.12);*/
  overflow:hidden;
  transition:left var(--anim-ms) ease,width var(--anim-ms) ease,opacity var(--anim-ms) ease;
}

.card .media
{
  width:100%;
  height:100%;
}
.card .media img
{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.card .media img:hover 
{
  webkit-filter: blur(4px); /* Chrome, Safari, Opera */
  filter: blur(4px);
}

.info{
      position: absolute;
    bottom: 80px;
    /* left: 28px; */
    right: 20px;
    max-width: 250px;
    background: var(--accent);
    color: #fff;
    padding: 51px 30px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    height: 190px;
}
.info h3{margin:0 0 8px;font-size:18px;font-weight:700;}
.info p{margin:0 0 14px;font-size:14px;line-height:1.35;}
.info .actions{display:flex;gap:10px;}
.btn{
  display:inline-block;
  padding:8px 14px;
  border-radius:4px;
  text-decoration:none;
  font-weight:700;
  margin-top: 20px;
}
.btn-shop
{
  background:#fff;
  color:#fff !important;
  font-size: 12px;
  border: 1px solid #fff !important;
}
.btn-shop:hover
{
  color: #000 !important;
}
.btn-detail
{
  background:transparent;
  color:#fff !important;
  font-size: 12px;
  border: 1px solid #fff !important;
  /*border:1px solid rgba(255,255,255,0.9);*/
}
.btn-detail:hover
{
  color: #000 !important;
}
.side .info p,.side .info .actions{display:none;}

.controls
{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:90px;
  margin-top:56px;
}
.arrow{width:48px;height:48px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 20px rgba(0,0,0,.12);cursor:pointer;user-select:none;}
.view-all
{
    display: inline-block;
    padding: 12px 24px;
    background: #C2769D;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    transition: 0.3s;
}
.view-all:hover 
{
  background-color: #ffffff;
  border: 1px solid #C2769D;
  color: #000;
  text-decoration: none;
}
.contact-home
{
  display: inline-block !important;
    padding: 14px 24px !important;
    background: #fff !important;
    color: #000 !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    font-size: 15px !important;
    transition: 0.3s !important;
}
.contact-home:hover
{
  border: 1px solid #fff !important;
  background-color: transparent !important;
  color: #fff !important;
}

.chat{position:fixed;right:20px;bottom:22px;width:56px;height:56px;border-radius:50%;background:var(--accent);color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 28px rgba(0,0,0,.18);}

@media(max-width:820px){
  :root{--center-pct:1;--side-visible-pct:0;--card-h:360px;}
  .info{left:18px;right:18px;max-width:none;bottom:18px;}
  .info .actions{display:flex;}
}
.about-section{
  max-width:1200px;
  margin:40px auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:stretch;   /* ✅ both sides same height */
}

/* LEFT SIDE */
.about-left{
  height:100%;           /* ✅ stretch full height */
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.about-left h2{
  font-size:28px;
  margin-bottom:40px;
  font-weight:700;
}
.about-left p{
  margin-bottom:20px;
  color:#444;
  text-align: justify;
}
.btn{
  display:inline-block;
  margin-top:15px;
  /*padding:10px 18px;*/
  background:#ffffff;
  color:#ffffff;
  font-weight:bold;
  border-radius:4px;
  text-decoration:none;
  transition:0.3s;
  align-self:flex-start;
}
.btn:hover
{
  background:#9C1D61;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
}

  /* RIGHT SIDE */
.about-right{
  display:grid;
  grid-template-rows:auto auto;
  gap:15px;
  height:100%;           /* ✅ stretch full height */
}
.about-right img{
  width:100%;
  height:auto;
  display:block;
  border-radius:6px;
  object-fit:cover;
}

.bottom-grid{
  display:block;
  gap:15px;
}
.bottom-right{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.value-box{
  background:#f5f5f5;
  border-radius:4px;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:15px;
  text-align:left;
  padding:12px;
  height:100px;
}
.value-box-img img{
  width:50px;
  height:50px;
  object-fit:contain;
}

  /* 📱 Mobile responsive */
@media(max-width:768px)
{
  .about-section{grid-template-columns:1fr;}
  .about-left,
  .about-right{height:auto;} /* ✅ reset for stacked view */
  .bottom-right{grid-template-columns:1fr;}
   footer 
{
  padding: 40px 30px 20px !important;
}
.controls
{
  gap: 17px !important;
}
p.lead
{
  margin:0 0 24px;
  color:#1b1b1b;
  text-align: center;
  font-size: 14px;
}
.about-left h2 {
    font-size: 23px;
  }
  .left h3 {
    font-size: 20px !important;
}
}

.two-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:100vh;
}

  /* LEFT SIDE */
.left{
  background:#C2769D;
  display:block;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:40px 20px;
}
.left h3{
  font-size:22px;
  margin-bottom:25px;
  font-weight:700;
  color: #fff;
}
.left img{
  width: 100%;
  /*margin-bottom:25px;*/
}
.left p{
  font-size:16px;
  margin-bottom:25px;
  line-height:1.5;
  color: #ffffff;
}
.btn{
  display:inline-block;
  padding:7px 22px;
  border:1px solid #fff;
  color:#000;
  text-decoration:none;
  font-size:14px;
  font-weight:bold;
  border-radius:3px;
  transition:0.3s;
}
.btn:hover{
  background:#fff;
  color:#c75d89;
}

  /* RIGHT SIDE */
.right{
  background:#9CAFB1;
  display:flex;
  flex-direction:row;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:40px 20px;
}
.right img{
  max-width:260px;
  margin-bottom:25px;
}
.download-title{
  font-size:20px;
  margin-bottom:20px;
  font-weight:700;
  color: #ffffff;
}
.download-btn{
  display:inline-block;
  padding:12px 24px;
  border:1px solid #fff;
  background:transparent;
  color:#fff;
  font-size:15px;
  font-weight:bold;
  border-radius:3px;
  text-decoration:none;
  transition:0.3s;
}
.download-btn:hover{
  background:#c2769d;
  color:#fff;
  text-decoration: none;
  border: 1px solid #c2769d;
}

/* 📱 Mobile responsive */
@media(max-width:768px){
  .two-section{
    grid-template-columns:1fr;
  }
  .left, .right{
    min-height:0vh;
    padding:30px 15px;
  }
  .left img, .right img{
    max-width:200px;
  }
  .right {
display: block;
}
  }

  /*footer whatsapp button and scroll button css  */

.floating-btn {
  position: fixed;
  bottom: 20px;
  padding: 12px 21px;
  font-size: 20px;
  border: none;
  border-radius: 50%;
  background: #C2769D;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  display: none; /* hidden by default */
  transition: all 0.3s ease;
  z-index: 1000;
}

.floating-btn.right {
  right: 20px;
}

.floating-btn.left {
  left: 20px;
  background: #25D366; /* WhatsApp green */
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 55px;
  height: 55px;
  justify-content: center;
}

.floating-btn:hover {
  transform: scale(1.1);
}

/*product page css*/

.product-gynecology {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  display: flex;
  gap: 40px;
}

/* LEFT IMAGE SECTION */
.product-gallery {
  flex: 1;
  max-width: 50%;
  text-align: center;
}

.main-image {
  position: relative;
  border: 1px solid #ddd;
  padding: 10px;
  background: #fff;
}

.main-image img {
  max-width: 100%;
  height: auto;
  transition: opacity 0.5s ease;
}

/* Arrows */
.arrow-pro {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #c2769d;
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 8px 12px;
  cursor: pointer;
}

.arrow-pro.left {
  left: 10px;
}

.arrow-pro.right {
  right: 10px;
}

/* Thumbnails */
.thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  /*justify-content: center;*/
}

.thumbnails img {
  width: 60px;
  height: 60px;
  border: 1px solid #ddd;
  cursor: pointer;
  object-fit: contain;
  background: #fff;
}

/* RIGHT INFO SECTION */
.product-info {
  flex: 1;
  max-width: 50%;
}

.product-info h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.accordion {
  border-top: 1px solid #ddd;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*background: #fff;*/
}

.accordion-header.active {
  color: #000000;
}
.accordion-header:hover {
  color: #C58AA9;
}

.accordion-content {
  display: none;
  padding: 15px;
  background: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}

.accordion-content.show {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .product-gallery, .product-info {
    max-width: 100%;
  }
}
.banner {
  position: relative;
  width: 100%;
  height: 100px; /* Default desktop height */
  background: url('images/all-products/2.webp') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(195, 140, 169, 0.6); /* Pink overlay */
}

   .banner h1 {
  position: relative;
  color: #fff;   /* White text */
  font-size: 28px;
  font-weight: 700;
  padding: 10px 20px;
  margin-left: 81px;
  border-radius: 4px;
  z-index: 1; /* ensures h1 is above overlay */
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .banner {
    height: 180px;
    justify-content: center;
    text-align: center;
    display: none;
  }

  .banner h1 {
    font-size: 20px;
    margin-left: 0;
    padding: 8px 15px;
  }
  .footer-logo
  {
    font-size: 25px;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 150px;
  }

  .banner h1 {
    font-size: 18px;
    padding: 6px 12px;
  }
}
.video-container {
  position: relative;
  width: 100%;
  max-width: 560px;   /* Keeps it neat on larger screens */
  aspect-ratio: 16 / 9; /* Maintains video proportion */
  border: 5px solid #fafafa;
  outline: 1px solid #333;
  /*box-shadow: 15px 15px #f50057;*/
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
