* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: KarlaS;
  src: url('./fonts/Karla/Karla-SemiBold.ttf');
}

@font-face {
  font-family: KarlaM;
  src: url('./fonts/Karla/Karla-Medium.ttf');
}

@font-face {
  font-family: KarlaR;
  src: url('./fonts/Karla/Karla-Regular.ttf');
}

@font-face {
  font-family: KarlaB;
  src: url('./fonts/Karla/Karla-Bold.ttf');
}

@font-face {
  font-family: PoppinS;
  src: url('./fonts/Poppins/Poppins-SemiBold.ttf');
}

@font-face {
  font-family: PoppinM;
  src: url('./fonts/Poppins/Poppins-Medium.ttf');
}

@font-face {
  font-family: PoppinR;
  src: url('./fonts/Poppins/Poppins-Regular.ttf');
}

@font-face {
  font-family: PoppinB;
  src: url('./fonts/Poppins/Poppins-Bold.ttf');
}

.fade-in-from-bottom {
  visibility: hidden;
}

.contactIcons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding-left: 30px;
  gap: 20px;
  width: 150px;
  height: 50px;
  position: fixed;
  background-color: white;
  border-radius: 50px;
  right: -20px;
  bottom: 0;
  z-index: 4000;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.contactIcons a {
  color: #BC2E3F;
  font-size: 23px;
}

.contactIcons a .wp {
  color: green;
  font-size: 30px;
}

.overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 99;
}

.loaderOverlay {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1);
  z-index: 5000;
}


.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid #BC2E3F;
  animation:
    l20-1 0.8s infinite linear alternate,
    l20-2 1.6s infinite linear;
}
@keyframes l20-1{
   0%    {clip-path: polygon(50% 50%,0       0,  50%   0%,  50%    0%, 50%    0%, 50%    0%, 50%    0% )}
   12.5% {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100%   0%, 100%   0%, 100%   0% )}
   25%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 100% 100%, 100% 100% )}
   50%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
   62.5% {clip-path: polygon(50% 50%,100%    0, 100%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
   75%   {clip-path: polygon(50% 50%,100% 100%, 100% 100%,  100% 100%, 100% 100%, 50%  100%, 0%   100% )}
   100%  {clip-path: polygon(50% 50%,50%  100%,  50% 100%,   50% 100%,  50% 100%, 50%  100%, 0%   100% )}
}
@keyframes l20-2{
  0%    {transform:scaleY(1)  rotate(0deg)}
  49.99%{transform:scaleY(1)  rotate(135deg)}
  50%   {transform:scaleY(-1) rotate(0deg)}
  100%  {transform:scaleY(-1) rotate(-135deg)}
}


.logo img {
  margin-top: 20px;
  width: 150px;
}


.navbar {
  z-index: 200;
  text-transform: uppercase;
  background-color: white;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100px;
  padding: 40px 30px 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.5s, border-radius 0.5s, width 0.5s, box-shadow 0.5s, background 0.1s;
}


.navbar a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 12px;
  line-height: 25px;
  transition: color 0.5s;
  font-family: PoppinR;
  letter-spacing: 2px;
}

.navbar-right a {
  text-decoration: none;
  color: black;
  background-image: linear-gradient(#000000,#000000);
  background-size: 0 2px, auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  transition: all .3s ease-out;
}

.navbar-right a:hover {
  color: rgba(0,0,0,0.6);
}

.navbar-right a.active {
  background-size: 50% 2px, auto;
}


.navbar-left {
  text-align: center;
  transition: flex 0.3s;
}

.navbar-right a {
  margin: 0 10px;
}

.navbar-menu {
  display: none;
  z-index: 400;
  padding-right: 20px;
}

.navbar-menu i {
  transition: opacity 0.3s;
}

.navbar-menu i:hover {
  cursor: pointer;
  opacity: 90%;
}




.waveA {
  position: absolute;
  transform: scale(200%);
  top: -80px;
}

.waveB {
  position: absolute;
  transform: scale(200%) rotate(180deg);
  bottom: -80px;
  z-index: 400;
}

.waveC {
  position: absolute;
  transform: scale(200%);
  top: -20px;
}

.waveD {
  position: absolute;
  transform: scale(200%) rotate(180deg) translateX(10%);
  bottom: 50px;
  z-index: 400;
}


.nav {
  z-index: 100;
  text-transform: uppercase;
  overflow: hidden;
  background-color: white;
  position: fixed;
  width: 100%;
  min-height: 40vh;
  height: fit-content;
  padding: 10px 40px 40px 40px;
  text-align: center;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  border-radius: 0 0 80px 80px;
}

.nav a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 12px;
  line-height: 25px;
  transition: color 0.5s;
  font-family: PoppinR;
  letter-spacing: 2px;
}

.nav a {
  text-decoration: none;
  color: black;
  background-image: linear-gradient(#000000,#000000);
  background-size: 0 2px, auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  transition: all .3s ease-out;
}

.nav a:hover {
  /* background-size: 50% 2px, auto; */
  color: rgba(0,0,0,0.6);
}

.nav a.active {
  background-size: 50% 2px, auto;
}

.home {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  background: url('../images/ecg.png') no-repeat center center, rgba(0, 0, 0, 0.5);
  background-blend-mode: soft-light;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

.heroHead {
  font-family: PoppinR;
  color: white;
  font-weight: normal;
  font-size: 50px;
  max-width: 800px;
  text-align: center;
}

.heroDesc {
  font-family: KarlaR;
  color: white;
  font-weight: normal;
  font-size: 20px;
  max-width: 800px;
  line-height: 1.5;
  text-align: center;
}

.heroButtonContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.heroButtonContainer button {
  padding: 10px 30px 10px 30px;
  font-family: KarlaM;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  background: none;
  border-radius: 50px;
  border: 2px solid white;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
}

.heroButtonContainer button:hover {
  background: white;
  color: black;
}

.custom-shape-divider-bottom-1727885006 {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1727885006 svg {
    position: relative;
    display: block;
    width: calc(124% + 1.3px);
    height: 65px;
}

.custom-shape-divider-bottom-1727885006 .shape-fill {
    fill: #FFFFFF;
}





.custom-shape-divider-top-1727802483 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1727802483 svg {
    position: relative;
    display: block;
    width: calc(159% + 1.3px);
    height: 59px;
}

.custom-shape-divider-top-1727802483 .shape-fill {
    fill: #FFFFFF;
}


.custom-shape-divider-bottom-1727801778 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1727801778 svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 107px;
}

.custom-shape-divider-bottom-1727801778 .shape-fill {
    fill: #BC2E3F;
}

.custom-shape-divider-top-1727885971 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 300;
    transform: rotate(180deg);
    margin-top: -0.5px;
}

.custom-shape-divider-top-1727885971 svg {
    position: relative;
    display: block;
    width: calc(115% + 1.3px);
    height: 65px;
}

.custom-shape-divider-top-1727885971 .shape-fill {
    fill: #FFFFFF;
}



.intro {
  min-height: 100vh;
  height: fit-content;
  padding: 50px 40px 100px 40px;
  position: relative;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.introHead {
  font-family: PoppinR;
  color: black;
  font-weight: normal;
  font-size: 50px;
  max-width: 800px;
  text-align: center;
}

.introHead span {
  font-family: PoppinM;
  color: #BC2E3F;
}

.introDesc {
  font-family: KarlaR;
  color: black;
  font-weight: normal;
  font-size: 20px;
  max-width: 900px;
  line-height: 1.5;
  text-align: center;
}

.introDesc span {
  color: #BC2E3F;
}

.inImageRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 0 0;
  flex-wrap: wrap;
}

.inImageRow img {
  height: 250px;
  border-radius: 10px;
  z-index: 500;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.services {
  min-height: 100vh;
  height: fit-content;
  padding: 100px 40px 100px 40px;
  position: relative;
  background-color: #BC2E3F;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.servicesHead {
  font-family: PoppinR;
  color: white;
  font-weight: normal;
  font-size: 50px;
  max-width: 800px;
  text-align: center;
}

.servicesHead span {
  font-family: PoppinM;
}

.servicesRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.servicesRow button {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  border: none;
  transition: transform 0.4s ease;
}

.servicesRow button img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.servicesRow button:hover {
  transform: scale(105%);
}

.serviceCol {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.serviceCol p {
  font-family: PoppinR;
  color: white;
  font-size: 25px;
  text-align: center;
}

.custom-shape-divider-top-1727801339 {
    position: absolute;
    z-index: 200;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1727801339 svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 153px;
}

.custom-shape-divider-top-1727801339 .shape-fill {
    fill: #BC2E3F;
}

.placeholderSection {
  min-height: 100vh;
  height: fit-content;
  padding: 120px 0 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  background: url('../images/ecg.png') no-repeat center center, rgba(0, 0, 0, 0.6);
  background-blend-mode: soft-light;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  overflow: hidden;
}

.placeholderContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}



.placeholderDivA, .placeholderDivB, .placeholderDivC {
  background-color: white;
  height: 420px;
  width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding: 50px;
  position: relative;
}

.placeholderDivA {
   border-radius: 120px 120px 100px 200px / 120px 120px 80px 200px;
}

.placeholderDivB {
  border-radius: 120px 120px 120px 120px / 120px 120px 120px 120px;
}

.placeholderDivC {
  border-radius: 120px 120px 200px 130px / 120px 120px 200px 120px;
}

.placeHolderIcon {
  height: 150px;
  width: 150px;
  background-color: #BC2E3F;
  border-radius: 50%;
  position: absolute;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.placeHolderIcon i {
  font-size: 40px;
  color: white;
}

.placeholderDivA  .placeHolderIcon {
  left: -1px;
  bottom: -1px;
}

.placeholderDivB  .placeHolderIcon {
  bottom: -40px;
}

.placeholderDivC  .placeHolderIcon {
  right: -1px;
  bottom: -1px;
}


.paHead {
  font-family: PoppinR;
  color: white;
  font-weight: normal;
  font-size: 45px;
  text-align: center;
}

.pxHead {
  font-family: PoppinR;
  color: black;
  font-weight: normal;
  font-size: 25px;
  text-align: center;
}

.pxHead span {
  font-family: PoppinM;
  color: #BC2E3F;
}

.pxDesc {
  font-family: KarlaR;
  color: black;
  font-size: 18px;
  max-width: 900px;
  line-height: 1.5;
  text-align: center;
}

.pxDesc span {
  color: #BC2E3F;
}


.doctorinfo {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  background: url('../images/echo.png') no-repeat center center, rgba(0, 0, 0, 0.5);
  background-blend-mode: soft-light;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

.dContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.whiteBox {
  width: 800px;
  height: 300px;
  padding: 60px;
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 50px 600px 120px 200px/ 50px 400px 90px 190px;
}

.edRow {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  font-family: KarlaM;
  margin-top: 20px;
}

.edRow p {
  background-color: #BC2E3F;
  color: white;
  border-radius: 50px;
  padding: 10px 20px 10px 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.whiteBox .detailSection .dHead {
  font-family: PoppinM;
  font-size: 40px;
}

.whiteBox .detailSection .dDesc {
  font-family: KarlaR;
  font-size: 25px;
}

.whiteBox .imageSection {
  width: 250px;
  height: 300px;
  margin-top: -80px;
  background-color: white;
  border-radius: 120px 100px 30px 60px/ 80px 100px 50px 80px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  overflow: hidden;
}

.whiteBox .imageSection img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}


.scHead {
  font-family: PoppinR;
  color: white;
  font-weight: normal;
  font-size: 55px;
  text-align: center;
}


.custom-shape-divider-bottom-1727802760 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1727802760 svg {
    position: relative;
    display: block;
    width: calc(148% + 1.3px);
    height: 59px;
}

.custom-shape-divider-bottom-1727802760 .shape-fill {
    fill: #FFFFFF;
}



footer {
  background-color: white;
  position: relative;
  min-height: 50vh;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  font-family: KarlaM;
  text-align: center;
  overflow: hidden;
}

.footerTop {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  padding: 80px 50px 50px 50px;
  border-bottom: 2px solid black;
}

.hLink {
  color: black;
}

.footerBottom {
  margin-bottom: 40px;
}

.footerBottom p {
  line-height: 1.5;
}

.socialHandles {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.socialHandles a {
  text-decoration: none;
  outline: none;
  color: black;
  cursor: pointer;
  transition: all 0.2s;
}

.socialHandles a:hover {
  opacity: 60%;
}

.socialHandles i {
  font-size: 30px;
}

.fContact p {
  width: 250px;
  text-align: left;
}

.fContact {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}

.cxHead {
  font-size: 20px;
  font-family: KarlaB;
}

.footerC {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fContact a {
  font-family: KarlaM;
  color: black;
}

.footerB {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}

.footerD {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}


.footerA {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.footerA p {
  width: 260px;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
}

.footerA img {
  width: 160px;
}



@media (max-width: 1200px) {
  .navbar-right {
    display: none;
  }
  .navbar-menu {
    display: block;
  }
}

@media (max-width: 992px) {
   .home {
     padding: 0 40px 0 40px;
   }
   .waveD {
     transform: scale(350%);
   }
   .waveA {
     transform: scale(350%);
   }
   .waveB {
     transform: scale(350%);
   }
   .placeholderContainer {
     gap: 60px;
   }
}


@media (max-width: 786px ) {
  .footerTop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }

  .footerC, .footerB, .footerD {
    align-items: center;
  }

  .fContact p {
    text-align: center;
  }

  .scHead {
    font-size: 40px;
  }

  .dContainer {
    gap: 50px;
    align-items: center;
  }

  .whiteBox {
    flex-direction: column-reverse;
    height: 500px;
    width: 460px;
  }

  .whiteBox .detailSection {
    align-items: center;
  }

  .dHead, .dDesc {
    text-align: center;
  }
  .edRow {
    justify-content: center;
  }
  .waveD {
    transform: scale(450%);
  }
  .waveA {
    transform: scale(450%);
  }
  .waveB {
    transform: scale(450%)  translate(-3%,-20%);
  }

  .servicesHead {
    font-size: 40px;
  }

  .serviceCol p {
    font-size: 25px;
  }
}

@media (max-width: 600px) {
   .heroHead {
     font-size: 35px;
   }
   .heroDesc {
     font-size: 18px;
   }
   .heroButtonContainer button {
     font-size: 11px;
     letter-spacing: 1px;
   }
   .introHead {
     font-size: 35px;
   }
   .inImageRow img {
     height: 200px;
   }
   .whiteBox {
     width: 380px;
     gap: 30px;
   }

   .whiteBox .detailSection .dHead {
     font-size: 35px;
   }

   .whiteBox .detailSection .dDesc {
     font-size: 22px;
   }

   .servicesRow button {
     height: 90px;
     width: 90px;
   }

   .serviceCol p {
     font-size: 20px;
   }

   .paHead {
     font-size: 35px;
   }

   .btCons{
     margin-left: -13px;
   }

   .placeholderDivA, .placeholderDivB, .placeholderDivC {
     width: 380px;
     height: 480px;
   }

   .placeHolderIcon {
     height: 120px;
     width: 120px;
   }

   .footerC iframe {
     width: 320px;
   }

   .waveD {
     transform: scale(650%) translate(-3%,-10%);
   }
   .waveA {
     transform: scale(650%);
   }
   .waveB {
     transform: scale(750%) translate(1%,-30%);
   }
}
