/*About Us Page > Mission Vision */
  .bg-image-mv {
    position: relative;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: rgba(255,255,255,0.8);
    background-blend-mode: lighten;
  }

/*About Us Page > Core Values */
  div.col-lg-3 > h1.mb-5 {
    font-weight: bolder;
  }

/* About Us Menu Dropdown */
.dropdown-menu {
  top: 80%;
}

.navbar-nav li:hover > ul.dropdown-menu {
    display: block;
}
.dropdown-submenu {
    position:relative;
}
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top:-6px;
}

/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
} 

/*Home Page > Doctors */
  .card-doctor .header .metama {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: auto;
    visibility: hidden;
    opacity: 0;
    transition: all .2s ease;
    text-align: center;
  }
  
  .card-doctor:hover .header .metama {
    bottom: 15px;
    visibility: visible;
    opacity: 1;
  }
  
  .card-doctor .header .metama a {
    display: inline-block;
    margin: 3px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    background-color: #fff;
    color: #6E807A;
    box-shadow: 0 4px 8px rgba(154, 159, 151, 0.6);
    transition: all .2s ease;
  }
  
  .card-doctor .header .metama a:hover {
    text-decoration: none;
    background-color: #6E807A;
    color: #fff;
  }

  /*Homepage > Services .services-icon  */
  .services-icon-6, .services-icon-3 {
    padding: 0 15px 0 0;
  }

  .services-icon-6 {
    width: 22%;
  }

  .services-icon-3 {
    width: 50%;
  }

  /* Media Query */
  /* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .services-icon-6, .services-icon-3 {
    width: 22%;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .services-icon-6, .services-icon-3 {
    width: 22%;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .services-icon-6, .services-icon-3 {
    width: 22%;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .services-icon-6 {
    width: 22%;
  }

  .services-icon-3 {
    width: 50%;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .services-icon-6 {
    width: 22%;
  }

  .services-icon-3 {
    width: 50%;
  }
}

/*Services > Lab Pricing */
#labpricing, #labpackages {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
#labpricing th, #labpricing td {
  border: 1px solid #ddd;
  text-align: center;
  padding: 8px;
}
#labpricing th {
  background-color: #f2f2f2;
}
#labpricing td:nth-child(2) {
  background-color: #fff8dc; /* Light yellow for Cash Payee */
}
#labpricing td:nth-child(3) {
  background-color: #e6f7ff; /* Light blue for HMO/Corporate */
}
#labpricing tr:nth-child(even) {
  background-color: #f9f9f9;
}

.note {
  font-size: 0.9em;
  color: #666;
  text-align: left;
}

/*Services > Lab Packages */
#labpackages thead {
  text-align: center;
}
#labpackages th, #labpackages td {
  border: 1px solid #ddd;
  padding: 8px;
  /*text-align: left;*/
}

#labpackages th {
  background-color: #f2f2f2;
  font-weight: bold;
}

#labpackages td:nth-child(1), td:nth-child(2) {
  background-color: #ffffff;
}

#labpackages td:nth-child(3) {
  background-color: #e6f7ff; /* Light blue for Cash Payee */
}
#labpackages td:nth-child(4) {
  background-color: #fff8dc; /* Light yellow for HMO/Corporate */
}
#labpackages .total-row {
  font-weight: bold;
  /*background-color: #f9f9f9;*/
}

#labpackages .package-title {
  font-weight: bold;
  background-color: #e8e8ff;
}

/* Services > Lab Packages: Right-align amounts in specific columns */
#labpackages .amount {
  text-align: right;
}

#pharmacyPricing td:nth-child(3) {
    text-align: right;
}

/*Homepage > Let's Consult  */
#letsconsult {
  background-color: #00D9A5;
}

#letsconsult:hover {
background-color: #596261;
}

/*Homepage > Appointment  */
.notif-success {
  color: #00D9A5;
}

.notif-error {
  color: #d94800;
}

/*Blogs*/
.post-content h3 {
  color: black;
}

/* Footer */
#copyright a {
  color: #A0FFE9;
}

#copyright a:hover {
  color: #CDFFF3;
}
/* Footer */

/* --- Banner/hero slide container --- */
.page-hero {
  position: relative;
  overflow: hidden;
  /* Use a fixed height (or calc as needed) */
  height: calc(100vh - 180px);
  z-index: 10;
}

/* Ensure background image covers slide */
.page-hero.bg-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Hero section: center its content via flexbox */
.hero-section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  align-items: center;     /* horizontal centering */
  text-align: center;
}

/* For video slides, ensure the wrapper is positioned */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* The play button: positioned at lower left, just above the bottom edge */
.video-wrapper .play-btn {
  position: absolute;
  left: 20px;
  bottom: 40px;  /* adjust the bottom offset as desired */
  z-index: 9999; 
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 24px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
  /* For debugging, you can add a temporary outline: */
  /* outline: 2px solid red; */
}

/* Optionally, add a rule to hide the play button via a class */
.play-btn.hidden {
  display: none;
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* Let clicks pass to the buttons only */
}

.owl-carousel .owl-nav button {
  pointer-events: all; /* Make sure buttons get the click */
  background: rgba(44, 99, 75, 0.8);  /* Customize background */
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev {
  margin-left: 2px;  /* Adjust as needed for left spacing */
}

.owl-carousel .owl-nav button.owl-next {
  margin-right: 2px;  /* Adjust as needed for right spacing */
}

.owl-carousel .owl-nav button:hover {
  background: rgba(44, 99, 75, 1);
}

/* Optionally, hide the navigation arrows on smaller screens */
@media only screen and (max-width: 600px) {
  .owl-carousel .owl-nav {
    display: none;
  }
}

#hero-slider .owl-dots {
  position: absolute;
  bottom: 30px;  /* adjust this as needed */
  width: 100%;
  text-align: right;
  z-index: 20;   /* make sure it's above backgrounds */
}

#hero-slider .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

#hero-slider .owl-dot.active {
  background: #00D9A5; /* or your theme color */
}
/* --- Banner/hero slide container --- */