/*
    Theme Name: MWD
    Author:  MWD
    Author URL: https://movewith.digital/
    Description: ---- 2023.
    Document   : Framework
    Created on :  SEP 16 2023, 10.00 AM
*/

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}



*,
*::before,
*::after {
  box-sizing: inherit;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-size: 100%;
  color: var(--textcolor);
  background: var(--outer-bg);
  font-family: var(--font-one);
  margin: 0px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-text-size-adjust: none;
  font-weight: 300;
  overflow: auto;
  /* disable default scroll */
}



::placeholder {
  color: var(--secondry-color);
  font-family: var(--font-one);
  font-weight: 400;
}

select {
  font-weight: 400;
}

.clear {
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

:focus {
  outline: 0;
}

a,
a:link,
a:visited {
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;

}



img {
  border: none;
  max-width: 100%;
}

ul,
li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  line-height: 1.2;
  font-family: var(--font-one);
}

p {
  margin: 0;
  line-height: 1.3;
  font-size: 1.5em;
  color: #192231;
  font-weight: 300;
  font-family: var(--font-one);
}

h1 {
  margin: 0;
  padding: 0;
  color: #fff;
  line-height: 1;
  font-size: 5em;
  font-weight: 600;
  font-family: var(--font-one);
}

h2 {
  margin: 0;
  padding: 0;
  color: #192231;
  font-size: 3em;
  line-height: 1.2;
  font-weight: 500;
  font-family: var(--font-one);
}

h3 {
  margin: 0;
  padding: 0;
  color: var(--maincolor);
  font-size: 3em;
  line-height: 1.2;
  font-weight: 300;
  font-family: var(--font-one);
}

h4 {
  margin: 0;
  padding: 0;
  color: #D9D9D9;
  line-height: 1.3;
  font-size: 2.6em;
  font-weight: 500;
  font-family: var(--font-one);
}

.outer:before,
.outer:after,
.container:after,
.container:before,
.container-full:after,
.container-full:before,
.slider-area:after,
.slider-area:before {
  content: " ";
  display: table;
}

.outer:after,
.container:after,
.container-full:after,
.slider-area:after {
  clear: both;
}

.outer {
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  background: var(--outer-bg);
overflow-x: hidden;
}

:root {
  --font-one: "Inter", sans-serif;
  --font-two: "Montserrat", sans-serif;
  --outer-bg: #FFF6EE;

}

.container {
  max-width: 1800px;
  width: 90%;
  margin: 0 auto;
}

.small-container {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
.medium-container {
  max-width: 1270px;
  width: 90%;
  margin: 0 auto;
}

.scroll-container {
  overflow: hidden;
}
.banner {
  width: 100%;
  position: relative;
}

.banner-content {
  max-width: 1000px;
}

.banner-content p {
  font-size: 1.7em;
  margin: 10px 0 0 0;
  color: #fff;
}

.banner .carousel-cell {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.banner-content {
  position: absolute;
  bottom: 20%;
  left: 6%;
  color: #fff;

}


.btn {
  display: inline-block;
  background: #fff;
  color: #333;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
}

.custom-dots {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 90%;
  overflow-x: auto;
  scrollbar-width: none;
  border-top: 1px solid #fff;
  text-align: center;
  margin: 0 auto;
  right: 0;
  padding: 30px 0 0 0;
}

.custom-dots::-webkit-scrollbar {
  display: none;
}

.dot {
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  font-size: 1.2em;
}

.dot.is-selected {
  opacity: 1;
}

.outline-btn {
  padding: 15px 40px;
  font-size: 15px;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  margin: 20px 0 0 0;
}

.outline-btn:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  transform: scale(1.05);
  /* subtle grow effect */

}

.outline-btn.brown {
  color: #8A736E;
  background-color: transparent;
  border: 1px solid #8A736E;
  font-weight: 500;
  text-transform: uppercase;
  margin: 20px 0 0 0;
}

.outline-btn.brown:hover {
  background-color: #8A736E;
  color: #fff;
  border: 1px solid #8A736E;

}

.main-about {
  margin: 100px 0 0 0;
  border-top: 1px solid #fff;
  padding: 30px 0;
}

.main-about ul {
  display: flex;
  justify-content: space-between;
}

.main-about ul li {
  font-size: 1.1em;
  font-weight: 500;
  color: #fff;
}

.about {
  width: 100%;
  padding: 100px 0;
}

.about .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;

}

.about .left {
  width: 40%;
}

.about .middle {
  width: 20%;
}

.about .right {
  width: 40%;
}

.about .left img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  margin: 0 0 50px 0;
}

.about .right img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  margin: 50px 0 0 0;
}

.about .center {
  display: flex;
  align-items: center;
  justify-content: center;

}

.about p {
  max-width: 500px;
}

.photo {
  width: 100%;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(40px);
}

.services-grid {
  display: flex;
  gap: 20px;
  margin: 60px auto 40px auto;
  width: 90%;

}

.service-flex {
  width: 20%;

}


.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  margin: 0 0 20px 0;
}

.service-card a {
  font-weight: 500;
  font-size: 1.1em;
}

.service-card img {
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.25) 100%);
  bottom: 0;
}

.service-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  z-index: 2;
}

.service-card .overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(111, 78, 55, 0.9), rgb(111 78 55 / 60%) 60%, transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  height: 100px;
  bottom: 0;
  top: auto;
}

.service-card h3 {
  font-size: 1.1em;
  margin: 0;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  font-weight: 500;
}

/* Hover Effects */
.service-card:hover img {
  transform: scale(1.1);
}

.service-card:hover .overlay::before {
  opacity: 1;
}

.service-card:hover h3 {
  transform: translateY(-5px);
}

.department {
  width: 100%;
  background: #fff;
  padding: 100px 0;
}

.text-content {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

span.department-label {
  background: #8A736E;
  color: #FFF6EE;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 1.1em;
  display: inline-block;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  position: relative;
}

.count-doctors {
 position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 100px;
    background-color: #FCAF79;
    color: #fff;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    /* left: 0; */
    margin: 0 auto;
    /* transform: translate(185px, -75px); */
    top: -19px;
}

.icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  z-index: 2;
  justify-content: flex-end;
  padding: 20px;
}

.icon img {
  height: inherit;
  width: auto;
  display: block;
}

.gradient-shade {
  width: 100%;
  height: 100px;
  background: #FFF6EE;
background: linear-gradient(345deg, rgba(255, 246, 238, 1) 0%, rgba(255, 246, 238, 0.47) 42%, rgba(255, 255, 255, 0.87) 95%);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.fill-btn {
  padding: 15px 40px;
  font-size: 1em;
  color: #fff;
  background-color: #8A736E;
  border: 1px solid #8A736E;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  margin: 20px 0 0 0;
}

a.fill-btn.brown:hover {
  border: 0;
}

.fill-btn:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #8A736E;
  transform: scale(1.05);
  /* subtle grow effect */

}

.btn-set {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.scroll-video {
  display: block;
  height: 800px;
  width: 100%;
  object-fit: cover;
  position: relative;
}

.video-sec {
  position: relative;
  width: 100%;
}

.video-sec::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  background: linear-gradient(182deg, rgba(0, 0, 0, 0.57) 0%, rgba(0, 0, 0, 0.57) 100%);
  top: 0;
  bottom: 0;
}

/* Play/Pause Button Style */
.play-toggle {

  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.play-toggle::before {
  content: '▶';
  margin-left: 4px;
  /* visually center the triangle */
}

.play-toggle.paused::before {
  content: '❚❚';
  margin-left: 0;
}

.video-content {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 100px;
}

.video-logo {
  text-align: right;
}

.play-btn {
  display: flex;
  gap: 20px;
  position: absolute;
  bottom: 80px;
  align-items: center;
}

.medium-text-size h2 {
  font-size: 2.5em;
}

.play-btn b {
  color: #fff;
  font-size: 1.3em;
  font-family: var(--font-two);
  max-width: 650px;
}

.doctors-sec .carousel {
  width: 100%;
  margin: 100px 0 100px 0;
}

.doctors-sec .carousel-cell {
  width: 14%;
  margin: 0 0.5%;
}

.doctor-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  background-color: #fff;
}

.doctor-image {
  position: relative;
}

.doctor-image img {
  width: 100%;
  display: block;
  transition: opacity 0.5s ease;
  height: 450px;
  object-fit: cover;
  object-position: top;
}

.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.doctor-card:hover .hover-img {
  opacity: 1;
}

.doctor-info {
  padding: 25px;
  position: absolute;
  transition: background-color 0.5s ease, color 0.5s ease;
  text-align: left;
  bottom: 0;
  z-index: 99999;
}

.doctor-card::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 130px;
  background: linear-gradient(to top, rgb(255 255 255 / 90%), rgb(255 255 255 / 60%) 60%, transparent);
  bottom: 0;
  left: 0;
}


.doctor-info h3 {
  margin: 0;
  font-size: 1em;
  font-weight: 500;
  color: #192231;
}

.doctor-info p {
  margin: 2px 0 0;
  font-size: 0.8em;
  font-weight: 300;
  color: #192231;
}

.doctors-sec {
  width: 100%;
  padding: 100px 0;
}

.doctors-sec .carousel-cell:nth-child(odd) {
  margin: 70px 0 0 0;
}

.large-text-content {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.logo-section {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  align-items: flex-start;
}

.logo-group {
  display: flex;
  gap: 40px;
  align-items: center;
}

.logo-slot {
  position: relative;
  width: 150px;
  overflow: hidden;
  background-color: #fff6ee;
}

.logo-slot img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 600px;
  opacity: 0;
  transition: opacity 1s ease;
  mix-blend-mode: multiply;
}

.set-one {
  display: flex;
  align-items: center;
  gap: 50px;
}

.logo-slot img.active {
  opacity: 1;
  position: static;
}

.title {
  font-size: 1.2em;
  font-weight: 500;
  color: #7F7F7F;
}

.client-logo .flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo {
  width: 100%;
  border-top: 1px solid #8A736E;
}

.set-one {
  border-right: 1px solid #8A736E;
  padding: 50px 0 50px 0;
}

.set-two {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 0 0 0 50px;
}

.image-card {
  flex: 1 1 32%;
  border-radius: 15px;
  cursor: pointer;
}

.image-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  border-radius: 20px;
}

.image-card:hover img {
  transform: scale(1.1) rotate(3deg);
}

.latest-updates {
  width: 100%;
  padding: 100px 0;
  background-color: #fff;

}

.flex-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.latest-updates .flex-text p {
  color: #5A5A5A;
  font-size: 1.2em;
  font-weight: 500;
}

.update-img {
  overflow: hidden;
  border-radius: 20px;
}

.flex {
  display: flex;
}

.latest-updates .flex {
  gap: 20px;
  flex-wrap: wrap;
  margin: 50px 0 0 0;
}

.update-content p {
  font-size: 1.1em;
  font-weight: 500;
  color: #292626;
  padding: 20px 0;
  max-width: 400px;
}

a.arrow {
  text-transform: uppercase;
  color: #292626;
  font-weight: 500;
}

.image-card a.arrow:hover span img {
  transform: translateX(6px);
  /* arrow moves right */
}

a.arrow span {
  transition: transform 0.3s ease;
}

.image-card a.arrow span img {
  width: inherit;
  height: auto;
  object-fit: none;
}

.footer-call-action {
 width: 100%;
    background-color: #fff;
    box-shadow: inset 0px -140px 0 #fff6ee;
}

.footer-call {
  border-radius: 20px;
  width: 100%;
  background-color: #192231;
  /* base gray */
/*   background-image: url("../img/bg.png"); */
  background-position: center;
  background-blend-mode: overlay;
  padding: 70px;
}

.btn-set-two a {
  display: inline-block;
}

a.outline-btn.fill {
  background-color: #fff;
}

a.outline-btn.fill {
  background-color: #fff;
  color: #192231;
}

.footer-call-action .flex {
  gap: 300px;
}

.footer-call-action .left {
  width: 45%;
}

.footer-call-action .right {
  width: 55%;
}

.footer-call-action .right .set-contact strong {
  color: #D4D4D4;
  font-size: 1.5em;
  font-weight: 500;
}

.footer-call-action .right .set-contact p {
  color: #D4D4D4;
  font-size: 1em;
  font-weight: 500;
}

.footer-call-action .right .set-contact p a {
  color: #D4D4D4;
  font-size: 1em;
  font-weight: 500;
}

.footer-call-action .set-contact {
  margin: 0 0 30px 0;
}

.footer-call-action .set-contact:last-child {
  margin: 0 0 0 0;
}

.footer {
  width: 100%;
  padding: 100px 0;
  position: relative;
}

.footer-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.ft-logo {
  width: 30%;
}

.department-ft {
  width: 30%;
}

.navigation {
  width: 20%;
}

.social-media {
  width: 20%;
}

.footer strong {
  color: #292626;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin: 0 0 20px 0;
  font-size: 1.2em;
}

.footer ul li a {
  color: #292626;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
  margin: 0 0 10px 0;
  font-size: 0.9em;
}

.social-media ul {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.social-media ul li a {
  margin: 0 0 0 0;
}

.copyright {
  width: 100%;
  background: url(../img/footer-bg.jpg) no-repeat center center/cover;
  padding: 50px 0;
  text-align: center;
}

.copyright p {
  color: #fff;
  font-weight: 400;
  font-size: 1.1em;
}

.copyright p a {
  color: #fff;
  font-weight: 400;
  font-size: 1.1em;
}

.brown-bg {
  width: 100%;
  background-color: #8A736E;
  /* base gray */
  background-image: url("../img/about-bg.jpg");
  background-position: center;

}

.p-100 {
  padding: 100px 0;
}

.p-200 {
  padding: 200px 0 100px 0;
}

.p-300 {
  padding: 300px 0 0 0;
}

.brown-bg h1 {
  font-size: 7em;
  color: #fff;
  line-height: 0.9;
}

.brown-bg p {
  color: #fff;
  font-size: 2.5em;
  line-height: 1.1;
  padding: 20px 0 0 0;
  max-width: 600px;
}

.brown-bg .left {
  width: 40%;
}

.brown-bg .right {
  width: 60%;
  display: flex;
  gap: 200px;
  align-items: center;
  justify-content: center;
}

.brown-bg .right img {
  border-radius: 20px;
}

.brown-bg .flex {
  gap: 200px;
}

.about-values {
  width: 100%;

}

.about-values .left {
  width: 50%;
  display: flex;
  gap: 50px;
}

.about-values .right {
  width: 48%;
  display: flex;
  gap: 50px;
  transform: translateY(-60px);
}

.about-values .right img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
}

.about-values .right img:last-child {

  height: 550px;

}

.about-values .flex {
  gap: 100px;
  align-items: center;
}

.about-values b {
  color: #192231;
  font-weight: 600;
  display: block;
  font-size: 1.4em;
  margin: 0 0 20px 0;
}

.values-set {
  flex: 1;
}

.about-values .container {
  border-bottom: 1px solid #8A736E;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* delays for sequential timing */
.fade-up:nth-child(1) {
  transition-delay: 0s;
}

.fade-up:nth-child(2) {
  transition-delay: 0.2s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.4s;
}

.about-description h2 span {
  display: inline-block;
}

.about-description {
  width: 100%;
  padding: 100px 0;
}

.team-sec {
  width: 100%;
  padding: 100px 0 100px 0;
}

.team-sec .flex {
  gap: 100px;
}

.team-sec .card {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  gap: 80px;

}

.team-sec .card img {
  width: 200px;
  height: 320px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.about-description .text {
  flex: 1;
}

.about-description .text p {
  margin: 0 0 15px;
  line-height: 1.6;
  font-style: italic;
  font-weight: 500;
  font-size: 1.3em;
}

.signature {
  margin-top: 10px;
  background-color: #fff6ef;

}

.team-sec .signature img {

  height: 80px;
  mix-blend-mode: multiply;
  object-fit: contain;
  object-position: left;
}

/* Responsive */
@media (max-width: 992px) {
  .card {
    flex-direction: column;
    text-align: center;
  }

  .card img {
    margin-bottom: 20px;
  }
}

.core-values-container {
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
  width: 90%;
}

.core-values-container h2 {

  margin-bottom: 10px;
}

.core-values-container span.core {
  display: inline-block;
  background-color: #f0e6e6;
  color: #a08f8f;
  font-size: 0.8em;
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.values-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
}

.values-grid::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 1px;
  background-color: #DAD7D6;
  left: 0;
  right: 0;
  top: 82px;
  margin: 0 auto;
  overflow: hidden;
}

.value-card {

  flex: 1 1 30%;
  margin: 10px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}



.value-card img {
  width: 50px;
  height: 50px;

}

.value-card h3 {
  font-size: 1.5em;
  margin: 10px 0;
  color: #192231;
  font-weight: 500;
}

.value-card p {
  font-size: 1.1em;
  color: #7F7F7F;
  max-width: 300px;
  margin: 0 auto;
  font-family: var(--font-two);
  font-weight: 400;
}

@media(max-width: 768px) {
  .values-grid {
    flex-direction: column;
    align-items: center;
  }

  .value-card {
    flex: 1 1 80%;
  }
}

.core-values {
  width: 100%;
  padding: 100px 0;
  background-color: #fff;
}

.team-sec p {
  font-style: italic;
  font-weight: 500;
  color: #192231;
  font-family: var(--font-two);
  font-size: 1.2em;
  max-width: 400px;
  margin: 0 0 20px 0;
}

.value-card-img {
  width: 100px;
  height: 100px;
  background-color: #D2BEBE;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gallery-slider .carousel {
  width: 100%;
}

.gallery-slider .carousel-cell {
  width: 100%;
}

/* Hide Flickity's default SVG arrow */
.gallery-slider .flickity-button-icon {
  display: none;
}

/* Style left (prev) arrow */
.gallery-slider .flickity-prev-next-button.previous {
  background: url(../img/flickity-arrow.png) no-repeat center center;
  background-size: 50%;
  width: 80px;
  height: 80px;
  border: none;
  box-shadow: none;
  background-color: #0000008f;
  transform: rotate(180deg);
  right: -30px;

}

/* Style right (next) arrow */
.gallery-slider .flickity-prev-next-button.next {
  background: url(../img/flickity-arrow.png) no-repeat center center;
  background-size: 50%;
  width: 80px;
  height: 80px;
  border: none;
  box-shadow: none;
  background-color: #0000008f;
  transform: translateY(0);
  right: 30px;
}

.department-banner {
  background: url(../img/department-detail.jpg) no-repeat top center/cover;
  height: 110vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
}

.about-description.left-align-content .text-content {
  text-align: left;
}

.about-description.left-align-content .left {
  flex: 1 1 50%;
}

.about-description.left-align-content .right {
  flex: 1 1 50%;
}

.about-description.left-align-content .flex {
  gap: 100px;
}

.about-description.left-align-content .right .call-box img {
  text-align: center;
  display: flex;
  justify-content: center;
  max-width: 50px;
  width: 100%;
  margin: 0 auto;
}

.about-description.left-align-content .right .call-box {
  text-align: center;
  border: 1px solid #FCAF79;
  padding: 100px 50px;
  margin: 0 auto;
  max-width: 500px;
  border-radius: 20px;
}

.about-description.left-align-content .right span {
  display: block;
  font-weight: 500;
  font-size: 1.6em;
  color: #192231;
  padding: 10px 0;
}

.about-description.left-align-content .right a {
  display: block;
  font-weight: 800;
  font-size: 2.3em;
  color: #192231;
}

a.outline-btn.fill.brown-text {
  color: #8A736E;
}

a.outline-btn.fill.brown-text:hover {
  color: #8A736E;
  border: 1px solid #8A736E;
}

a.fill-btn.orange {
  background-color: #FCAF79;
  border: 0;
}

a.fill-btn.orange:hover {
  background-color: #8A736E;
}


.accordion-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 0 10px 0;
}

.accordion-header {
  display: flex;
  align-items: center;
  padding: 15px 0 0 0;
  cursor: pointer;
}

.accordion-header .icon-accordian {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 100%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-header span {
  flex-grow: 1;
  font-size: 1.2em;
  font-weight: 400;
  color: #fff;
}

.toggle-icon {
  font-size: 20px;
  font-weight: normal;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;

}

.accordion-content.active {
  max-height: 500px;
  /* A large enough value to accommodate all content */
}

.accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 120px;
  /* Aligns with the list items in the image */
  padding-bottom: 20px;
}

.treatment-procudure .accordion-content li {
  padding: 7px 0;
  position: relative;
  color: #fff;
  font-size: 1.1em;
  font-weight: 400;
}
.faq .accordion-content li {
  padding: 7px 0;
  position: relative;
  color: #000;
  font-size: 1.1em;
  font-weight: 400;
}
.accordion-content li::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: #FCAF79;
  /* The orange-ish line */
}

.form-container {
  background-color: #192231;
  padding: 50px;
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-container h2 {
  font-size: 2.1em;
  color: #fff;
  margin: 0 0 20px 0;
}


.input-group {
  margin-bottom: 20px;
  position: relative;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 25px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.3em;
  box-sizing: border-box;
  color: #333;
}

.input-group textarea {
  height: 120px;
  resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;

  border-bottom: 2px solid #ff8c42;
}

.date-input .icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  pointer-events: none;
}

.submit-button {
  width: 100%;
  padding: 15px;
  background-color: #FCAF79;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  max-width: 300px;
}

.submit-button:hover {
  background-color: #e57e38;
}

.treatment-procudure .flex {
  gap: 100px;
}

.treatment-procudure .left {
  flex: 1 1 50%;
}

.treatment-procudure .right {
  flex: 1 1 50%;
}

.treatment-procudure {
  width: 100%;
  background-color: #8A736E;
  background-image: url(../img/about-bg.jpg);
  background-position: center;
  padding: 100px 0;
}

.treatment-procudure h3 {
  color: #FFF6EE;
  font-size: 3em;
  font-weight: 500;
}

.treatment-procudure p {
  color: #FFF6EE;
  font-size: 1.5em;
  max-width: 550px;
}

span.toggle-icon {
  text-align: right;
  color: #fff;
  font-size: 3em;
  font-weight: 100;
}

.accordion-container {
  margin: 30px 0 0 0;
}

.about-department .left {
  flex: 1 1 10%;
}

.about-department .right {
  flex: 1 1 45%;
}

.about-department {
  width: 100%;
  padding: 100px 0;
  background-color: #fff;
}

.about-department img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.about-department .flex {
  gap: 100px;
  align-items: center;
}

.about-depart {
  overflow: hidden;
	border-radius: 20px;
}
.right-width {
  max-width: 700px;
}
.about-depart img {
 width: 100%;
    height: 100%;
    transition: transform 0.3s 
ease-out;
}

.about-department .right p {
  color: #7F7F7F;
  font-weight: 300;
  margin: 20px 0;
  font-size: 1.4em;
  line-height: 1.4;
}
.detail-about b {
  font-size: 1.3em;
  color: #192231;
  line-height: 1.4;
  display: block;
 
}
.detail-about {
  border-top: 1px solid #AABFE3;
   padding: 20px 0;
}
a.emergency-btn {
  color: #8A736E;
  padding: 20px 0 5px 0;
  font-weight: 600;
  font-size: 1.3em;
  display: inline-block;
  position: relative;
text-decoration: none;
  overflow: hidden; /* This hides the line when it's not fully grown */
  transition: color 0.3s ease; /* Animate text color if you want */
}
a.emergency-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; /* Start with a width of 0 */
  height: 1px; /* The thickness of the line */
  background-color: #8A736E; /* The color of the line */
  transition: width 0.3s ease; /* The magic! Animate the width */
}

a.emergency-btn:hover::after {
  width: 100%; /* Expand the width to 100% on hover */
}
.faq .accordion-header span {
 color: #192231;
 font-size: 1.4em;
 font-weight: 500;
}
.faq .accordion-content  p {
 color: #3D3D3D;
 font-size: 1.2em;
 max-width: 850px;
 margin: 20px 0;
 font-weight: 400;
 line-height: 1.5;
}
.faq span.toggle-icon {
color: #8A736E;
font-weight: 400;
}
.faq .accordion-item:last-child {
  border: 0;
}
.faq .accordion-container {
border-top: 1px solid #8A736E;
padding: 20px 0 0 0;
max-width: 1100px;
}
.faq .accordion-item {
border-bottom: 1px solid #8A736E;
padding: 0 0 20px 0;
}
.faq {
  width: 100%;
  padding: 100px 0;
}
.no-banner header.main-header {
background: url(../img/header-bg.jpg) center center/cover;
}
.no-banner-sec {
  height: 200px;
}
.no-banner .doctors-sec .carousel.no-mar {
  margin: 0 0 10px 0;
} 
.no-banner .doctors-sec .carousel.no-mb {
  margin: 100px 0 0 0;
}
.no-banner .large-text-content {
padding: 100px 0 0 0;
}
.no-banner .doctors-sec .dropdown-container {
  position: relative;
  width: 350px;
  margin: 30px auto 0;
}

.no-banner .doctors-sec .dropdown {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  color: #4f6843;
  background-color: #fff;
  border: 1px solid #FCAF79;
  border-radius: 50px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
}

/* Custom arrow to replace the default one */
.no-banner .doctors-sec .dropdown-container::after {
  content: '▼';
  font-size: 15px;
  color: #000;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.no-banner .doctors-sec option {
background-color: #fff;
  border: 1px solid #FCAF79;
  border-radius: 50px;
}
.docotor-profile-banner.p-200 {
    background-color: #fff;
    padding: 200px 0 0 0;
	position: relative;
}
.doctor-profile-page .common-logo {
  display: none;
}
.doctor-profile-page .doctor-page-logo {
  display: block;
}
.doctor-profile-page .main-nav .menu > li > a {
color: #192231;
}
.doctor-profile-page ul.language li a {
color: #192231;
}
.doctor-profile-page .contact-details a {
color: #192231;
}
.doctor-profile-page ul.language li:nth-child(1) {
border-right: 1px solid #192231;
}
span.profile-badge {

    color: #FCAF79;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 1.1em;
    display: inline-block;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    position: relative;
    border: 1px solid #FCAF79;
}
.docotor-profile-banner h1 {
  color: #192231;
}
.docotor-profile-banner .left {
  flex: 1 1 35%;
}
.docotor-profile-banner .right {
  flex: 1 1 50%;
}
.docotor-profile-banner .flex {
  align-items: center;
}
.doctor-details-set {
  display: flex;
  align-items: center;
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
  gap: 10px;
  border-right: 1px solid #000;
}
.doctor-details-set strong {
  color: #192231;
  font-weight: 600;
  font-size: 1.5em;
}
.doctor-details {
  display: flex;
  margin: 20px 0;
}
img.bg-logo {
    position: absolute;
    right: 0;
    top: 20%;
    max-width: 300px;
}
.doctor-profile-page .about-description h2 {
font-size: 2.2em;
}
.doctor-profile-page .about-description p {
  font-size: 1.3em;
  line-height: 1.6;
  font-weight: 500;
  color: #192231;
  opacity: 0.8;
  margin: 20px 0 0 0;
}
.docotor-profile-banner .right img {
  display: block;
}
.docotor-profile-banner .doctor-details-set:last-child {
  border: 0;
}
.doctor-profile-page .about-description.left-align-content .right .call-box {
  background-color: #fff;
}
.doctor-profile-page .about-description.left-align-content .right a.fill-btn.orange {
  font-size: 1.2em;
    color: #fff;
    display: inline-block;
}
.blog-list-page .no-banner-sec {
  background-color: #fff;
}
.article-detail-page {
  background: #fff;
  padding: 0 0 100px 0;
}
.article-detail-page date {
  color: #000;
  font-weight: 500;
  font-size: 1.1em;
  display: block;
}
.article-detail-page h2 {
  max-width: 800px;
  padding: 10px 0;
}
.article-detail-page img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  margin: 10px 0 20px 0;
}
.article-detail-page h3 {
  color: #192231;
  font-size: 2em;
  max-width: 1100px;
  margin: 0 0 20px 0;
}
.article-detail-page p {
 color: #292626;
    font-size: 1.2em;
    max-width: 1100px;
    line-height: 1.5;
    font-weight: 400;
}
.article-detail-page strong {
 color: #292626;
    font-size: 1.1em;
    max-width: 1100px;
    line-height: 1.5;
    font-weight: 600;
    margin: 20px 0 10px 0;
 
}
.article-detail-page li {
 color: #292626;
    font-size: 1.2em;
    max-width: 1100px;
    font-weight: 400;
    list-style: decimal;
    margin: 0 0 10px 0;
}
.article-detail-page ul {
  margin: 0 0 0 20px;
}
.article-detail-page li span {
  display: block;
}
.blog-detail .flex-text {
  border-top: 1px solid #292626;
  padding: 40px 0 0 0;
}
.career-banner.p-200 {
  padding: 200px 0 0 0;
}
.brown-bg.white-text.career-banner {
  box-shadow: inset 0px -45px #fff6ee;
}
.brown-bg.white-text.career-banner img {
 height: 700px;
    object-fit: cover;
    width: 100%;
}
    .job-accordion {
    width: 100%;
    margin: 50px 0 0 0;
    }

    .job-item {
      background: #fff;
      border-radius: 15px;
      margin-bottom: 10px;
      border: 1px solid #FCAF79;
      overflow: hidden;
      transition: all 0.3s ease;
      padding: 10px;
    }

    .job-header {
      padding: 15px 20px;
      cursor: pointer;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.3em;
      background: #fff;
      color: #192231;
      font-weight: 400;
    }

  

    .job-icon {
      font-size: 20px;
      transition: transform 0.3s ease;
    }

    .job-header.active .job-icon {
      transform: rotate(180deg);
    }

    .job-content {
      display: none;
      padding: 20px;
      font-size: 14px;
      line-height: 1.6;
      background: #fff;
    
    }

    .job-content h4 {
      margin-bottom: 8px;
      font-size: 1.3em;
      font-weight: 600;
   color: #000000;
    }
 .job-content p {
  color: #4A4540;
  font-size: 1.5em;
  line-height: 1.4;
  font-weight: 400;
   max-width: 900px;
   padding: 0 0 20px 0;
 }
  .job-content ul li {
     font-size: 1.1em;
      font-weight: 400;
   color: #000000;
   list-style-type: disc;
  }
  .job-content ul {
    margin: 0 0 20px 20px;
  }
    .apply-btn {
      display: inline-block;
      padding: 10px 20px;
      background: #6a5acd;
      color: #fff;
      border-radius: 20px;
      text-decoration: none;
      font-size: 14px;
      transition: background 0.3s;
    }

    .apply-btn:hover {
      background: #5a4acb;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .job-header {
        font-size: 14px;
        padding: 12px 16px;
      }
      .job-content {
        font-size: 13px;
        padding: 15px;
      }
    }
    .toatl-count {
    position: relative;
    width: 55%;
    max-width: 470px;
    margin: 0 auto;
}
a.share {
    width: 50px;
    height: 50px;
    background-color: #000;
    display: inline-flex;
    padding: 10px;
    border-radius: 100px;
}
.btn-flex {
    display: flex;
    align-items: end;
    gap: 20px;
}


    .application h2 {
      font-size: 2em;
      font-weight: bold;
      margin-bottom: 20px;
      color: #222;
    }

    .application form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .application input, 
    .application textarea, 
   .application select {
      width: 100%;
      padding: 2em;
      border: 1px solid #f7b98d;
      border-radius: 6px;
      outline: none;
      font-size: 14px;
      resize: none;
    }


    .application input[type="file"] {
      border: 1px solid #f7b98d;
      background: #fff;
      padding: 10px;
    }

    .application button {
         background: #fda566;
    border: none;
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    font-size: 1.2em;
    cursor: pointer;
    font-weight: 500;
    margin-top: 10px;
    transition: background 0.3s 
ease;
    width: 100%;
    max-width: 200px;
    }

     .application button:hover {
      background: #f98c40;
    }
    .application {
      width: 100%;
      background-color: #fff;
      padding: 0 0 50px 0;
    }
        /* Custom file upload */
    .file-upload {
      position: relative;
      width: 100%;
    }

    .file-upload input[type="file"] {
      display: none; /* hide native input */
    }

    .file-upload label {
      display: block;
      width: 100%;
      padding: 20px;
      border: 1px solid #f7b98d;
      border-radius: 6px;
      font-size: 14px;
      color: #000000;
      background: #fff;
      font-weight: 400;
      cursor: pointer;
    }

    .file-upload span {
      color: #000000;
    }
    .application-page .no-banner-sec {
      background-color: #fff;
    }
    .application-page .department .container {
      border-top: 1px solid #D2BEBE;
      padding: 100px 0 0 0;
    }
    .brown-bg.career-banner  .flex {
      align-items: center;
    } 
    .contact-details-left {
      flex: 1 1 40%;
    }
      .contact-details-left b {
        display: block;
        color: #192231;
        font-weight: 500;
        font-size: 1.3em;
      }
      .contact-details-left-first a.address-contact {
         display: block;
        color: #192231;
        font-weight: 600;
        font-size: 1.8em;
        max-width: 400px;
        padding: 10px 0;
       
      }
      a.fill-btn.outline-orange {
        border: 1px solid #FCAF79;
        background-color: transparent;
        color: #FCAF79;
      }
      .contact-details-left-first .btn-set a.fill-btn.brown {
        display: flex;
    white-space: pre;
    align-items: center;
    gap: 10px;
      }
          .contact-details-left-first .btn-set a.fill-btn.outline-orange {
        display: flex;
    white-space: pre;
    align-items: center;
    gap: 10px;
      }
       .contact-details-left-first .btn-set {
        justify-content: flex-start;
       }
       .contact-details-right {
        flex: 1 1 40%;
       }
       .contact-details-right ul li {
        display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #8A736E;
    padding: 0 0 20px 0;
       }
       .contact-details-right ul li span {
        display: block;
         color: #192231;
        font-weight: 700;
        font-size: 1.3em;
       
       }
            .contact-details-right ul li a {
        display: block;
        color: #192231;
        font-weight: 700;
        font-size: 1.3em;
       }
       .contact-details-sec {
        width: 100%;
        padding: 50px 0 100px 0;
       }
       .contact-details-sec .flex {
    gap: 200px;
}
 .contact-details-right ul {
  max-width: 450px;
 }
 .contact-form-sec {
  width: 100%;
  padding: 100px 0;
  background: url(../img/contact-form-bg-img.jpg) no-repeat center center/cover;
  position: relative;
 }
 .contact-form-sec::after {
  content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffffb3;
    left: 0;
    right: 0;
    top: 0;
 }
  .contact-form-sec .text-content {
    padding: 0 0 50px 0;
    position: relative;
    z-index: 2;
    max-width: 650px;
  } 
   .contact-form-sec .form-container {
    position: relative;
    z-index: 2;
   }
   .blog-list-page .latest-updates {
    padding: 0 0 50px 0;
   } 
.icon-accordian img {
    width: 60%;
}
.gallery-slider .carousel-cell {
	  width: 100%;
	  height: clamp(260px, 60vw, 900px);
  overflow: hidden;
	
}
.gallery-slider .carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Force Flickity viewport height */
.gallery-slider .flickity-viewport {
  height: clamp(260px, 60vw, 900px) !important;
}


 

.single-departments .department-banner  h1 span.fade-up:nth-child(2) {
   
     line-height:1.2;
     font-size:1em;
     padding:10px 0 0 0;
	font-size:0.5em!important;
	display:block;
}

.single-departments .department-banner  h1 {
     font-size:4em!important;
text-shadow: 0 0 14px #0000004f;
}

.single-departments .department-banner  .left span {
	font-size:1.5em;
	font-weight:600;
	color:#fff;
}
.single-departments .department-banner {
	height: 70vh;
    min-height: 700px;
	background-position: right !important;
	
}
.single-departments.postid-77 .department-banner {
	background-position: bottom !important;
}
.single-departments .about-description .text-content h2 {
	font-size: 2.6em;
}
.single-departments .doctors-sec .toatl-count {
	width: inherit;
	max-width: inherit;
}
 .services-grid {
	gap: 50px;
	justify-content: flex-start;
}
.video-logo img {
    max-width: 150px;
    display: none;
}
.mobile-contact-details {
	display: none;
}
.mobile-book-appointment {
	display: none;
}
.mobile-logo {
	display: none;
}
.wp-video {
   margin: 30px 0;
}
.article-detail-page a {
	color: #000;
	
}
.article-detail-page h4 {
	color: #000;
	font-size: 1.8em;
}
	.single-departments .department-banner, .banner .carousel-cell {
		position: relative;
	}
	.single-departments .department-banner::after, .banner .carousel-cell::after {
		content: '';
		position: absolute;	
background: rgba(13, 12, 12, 6.5);
background: linear-gradient(181deg, rgba(13, 12, 12, 0.51) 0%, rgba(13, 12, 12, 0) 50%, rgba(13, 12, 12, 0.57) 100%);
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		right: 0;
	}
.banner .banner-content {
	
	z-index: 2;
} 
.page-template-career .brown-bg .left {
    width: 90%;
}
.brown-bg p {
	max-width: 800px;
	font-size: 2.3em;
}