@import url("/styles/elements/slide01.css");

.Wrapper {
  width: 1200px;
  margin: 0 auto;
}
.WrapperSpacing {
  width: 1200px;
  margin: 5rem auto;
}

#div_slideShow {
  width: 100%;
  height: 40rem;
  direction: ltr;
}
#div_whyUs_Plx {
  width: 100%;
  height: 30rem;
  padding: 5rem 0;
  background-image: url("/assets/img/plx.jpg");
  background-size: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#div_whyUs {
  height: 100%;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
}
#div_whyUs h2 {
  text-align: center;
}
#div_whyUs p {
  margin-top: 2rem;
  text-align: justify;
}
#div_services {
  height: 40rem;
  /* border: 1px solid #000; */
}
.ServiceBox {
  width: 48%;
  height: calc(50% - 0.5rem);
  margin-left: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 3rem 4rem;
  text-align: center;
  border-radius: 3rem 1rem;
  background-color: var(--primary-color);
  float: right;
  transition: all ease-in-out 300ms;
}
.ServiceBox:hover {
  filter: brightness(120%);
}
.SB_IMG {
  width: 5rem;
}
.SB_Title {
  color: #fff;
  text-align: center;
}
.SB_Description {
  padding-top: 0.5rem;
  color: #fff;
  font-size: 0.8rem;
  text-align: justify;
}
.PhysiciansDiv {
  height: 30rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* 1. Make this relative so the absolute children stay inside it */
.ContentWrapper.Physician {
  position: relative;
  width: 100%;
  height: calc(100% - 1rem);
}

/* 2. Stack boxes on top of each other and hide them via opacity */
.PhysicianBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-in-out,
    visibility 0.5s ease-in-out;
}

/* 3. Reveal smoothly on .show */
.PhysicianBox.show {
  opacity: 1;
  visibility: visible;
  z-index: 2; /* Brings the active doctor to the front */
}

/* --- Your layout styles below remain mostly untouched --- */

.PB_Image {
  width: 30%;
  height: 100%;
  float: right;
  display: block;
}

.PB_Title {
  width: 70%;
  height: 2rem;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  line-height: 2rem;
  border-radius: 0.3rem 0.3rem 0 0;
  background-color: var(--primary-color);
  float: right;
}

.PB_Description {
  width: 70%;
  height: calc(100% - 2rem);
  padding: 1rem;
  border: 0.05rem dotted var(--primary-color);
  border-radius: 0 0 0.3rem 0.3rem;
  float: right;
  box-sizing: border-box; /* Crucial so padding doesn't break your 70% width */
}

.PB_Description h3 {
  margin-bottom: 2rem;
}

.PB_Description ul {
  margin-right: 2rem;
}

/* 4. Ensure your tools/buttons stay clickable on top of the absolute boxes */
.ContentWrapper.tools {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 10;
}
.ContentWrapper.tools span {
  cursor: pointer;
}
.Ph {
  color: var(--primary-color);
}
.cPh {
  color: var(--secondary-color);
}
#div_stat {
  height: 40rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 3rem 1rem;
  background-color: rgba(79, 112, 109, 0.95);
  text-align: center;
  /* box-shadow: inset 0px 0px 3px 4px #000000 */
}
#div_stat h2 {
  font-size: 5rem;
  color: #fff;
  background-image: url("/assets/img/celebrate.svg");
  background-repeat: no-repeat;
  background-size: 10rem;
  background-position: calc(70%);
}
#div_stat table {
  width: 100%;
  margin-top: 8rem;
  text-align: center;
}
#div_stat td {
  color: #fff;
}
#div_stat th {
  width: 25%;
  height: 5rem;
}
.StatValueRow td {
  font-size: 3rem;
}
.StatIconRow th:nth-child(1) {
  background-image: url("/assets/img/stat01.svg");
  background-repeat: no-repeat;
  background-size: 5rem;
  background-position: center;
}
.StatIconRow th:nth-child(2) {
  background-image: url("/assets/img/stat02.svg");
  background-repeat: no-repeat;
  background-size: 5rem;

  background-position: center;
}
.StatIconRow th:nth-child(3) {
  background-image: url("/assets/img/stat03.svg");
  background-repeat: no-repeat;
  background-size: 5rem;

  background-position: center;
}

.StatIconRow th:nth-child(4) {
  background-image: url("/assets/img/stat04.svg");
  background-repeat: no-repeat;
  background-size: 5rem;

  background-position: center;
}

#div_aboutUs {
  height: 40rem;
  margin-bottom: 1rem;
  background-color: var(--primary-color);
}
#div_contactUs img {
  height: 2rem;
  display: block;
  float: right;
}
#div_contactUs span {
  height: 2rem;
  padding: 0.25rem;
  color: #fff;
  display: inline-block;
}
#div_contactUs div:nth-child(1) {
  float: right;
}
#div_contactUs div:nth-child(2) {
  float: left;
}
#div_contactUs div:nth-child(2) img {
  float: left;
}
