/*
@File: Fovia Template Styles - Custom Color Palette
*/

/*================================================
Default CSS
=================================================*/
@import url("Vazir-FD.css");
@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap");

:root {
  --clinic-primary: #003d2f;
  --clinic-primary-rgb: 0, 61, 47;
  --clinic-primary-light: #0f6b56;
  --clinic-primary-hover: #005844;
  --clinic-primary-dark: #00291f;
  --clinic-heading: #102a24;
  --clinic-ink: #1f3f37;
  --clinic-muted: #667a75;
  --clinic-surface: #eef8f5;
  --clinic-surface-strong: #d8eee7;
  --clinic-border: rgba(0, 61, 47, .35);
  --clinic-border-strong: rgba(0, 61, 47, .20);
  --clinic-white: #ffffff;
  --clinic-radius-sm: 12px;
  --clinic-radius: 16px;
  --clinic-shadow: 0 2px 8px rgba(var(--clinic-primary-rgb), .05);
  --clinic-shadow-hover: 0 6px 18px rgba(var(--clinic-primary-rgb), .09);
  --clinic-focus-ring: 0 0 0 .18rem rgba(var(--clinic-primary-rgb), .12);
  --clinic-blue: var(--clinic-primary);
  --clinic-navy: var(--clinic-heading);
  --clinic-sky: var(--clinic-surface);
  --clinic-line: var(--clinic-border);
}

body {
  padding: 0;
  margin: 0;
  font-family: "Vazir-FD", sans-serif;
  font-size: 15px;
}

a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: 0 !important;
  text-decoration: none;
  color: var(--clinic-ink);
}

a:hover {
  text-decoration: none;
  color: var(--clinic-primary);
}

button {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  color: var(--clinic-ink);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 14.5px;
  font-family: "Vazir-FD", sans-serif;
}

p:last-child {
  margin-bottom: 0;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--clinic-ink);
}

.bg-fefefe {
  background-color: var(--clinic-surface);
}

.bg-f4f9fd {
  background-color: var(--clinic-surface);
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

/*btn(primary&light)*/
.btn {
  border: none;
  line-height: initial;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 17px 50px 15.5px 25px;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 14px;
  font-family: "Vazir-FD", sans-serif;
  font-weight: 500;
}

.btn.disabled, .btn:disabled {
  opacity: 1;
}

.btn-primary {
  background: var(--clinic-primary);
  color: var(--clinic-surface);
}

.btn-primary i {
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  display: inline-block;
  height: 33px;
  width: 33px;
  line-height: 33px;
  color: var(--clinic-surface);
  border-radius: 50%;
  background-color: var(--clinic-heading);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-primary.disabled, .btn-primary:disabled {
  background: var(--clinic-primary);
  color: var(--clinic-surface);
}

.btn-primary:hover, .btn-primary:focus {
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  background: var(--clinic-ink) !important;
  color: var(--clinic-surface) !important;
}

.btn-primary:hover i, .btn-primary:focus i {
  background-color: var(--clinic-surface);
  color: var(--clinic-ink);
}

.btn-light {
  background-color: var(--clinic-surface);
  color: var(--clinic-ink);
}

.btn-light i {
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  display: inline-block;
  height: 33px;
  width: 33px;
  line-height: 34px;
  color: var(--clinic-ink);
  border-radius: 50%;
  background-color: var(--clinic-border);
}

.btn-light.disabled, .btn-light:disabled {
  background-color: var(--clinic-surface);
  color: var(--clinic-ink);
}

.btn-light:hover, .btn-light:focus {
  background-color: var(--clinic-ink) !important;
  color: var(--clinic-surface) !important;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
}

/*section-title*/
.section-title {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.section-title span {
  display: block;
  margin-bottom: 5px;
  color: var(--clinic-primary);
  font-size: 17px;
  font-family: "Vazir-FD", sans-serif;
}

.section-title h2 {
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 600;
}

.section-title p {
  max-width: 520px;
  margin-top: 10px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

/*form-control*/
.form-control {
  height: 45px;
  padding: 0 15px;
  font-size: 15px;
  line-height: initial;
  color: var(--clinic-ink);
  background-color: var(--clinic-white);
  border: 1px solid var(--clinic-border);
  border-radius: var(--clinic-radius-sm);
  -webkit-transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.form-control:focus {
  -webkit-box-shadow: var(--clinic-focus-ring) !important;
          box-shadow: var(--clinic-focus-ring) !important;
  border-color: var(--clinic-primary);
  background-color: var(--clinic-white);
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
  position: fixed;
  left: 0;
  width: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: 9999999;
  -webkit-transition: .9s;
  transition: .9s;
}

.preloader .loader {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 45%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.preloader .loader .loader-outter {
  position: absolute;
  border: 4px solid var(--clinic-surface);
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
          animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.preloader .loader .loader-inner {
  position: absolute;
  border: 4px solid var(--clinic-surface);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  left: calc(40% - 21px);
  top: calc(40% - 21px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
          animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.preloader .loader .indicator {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(1.5);
          transform: translateY(-50%) scale(1.5);
}

.preloader .loader .indicator svg polyline {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preloader .loader .indicator svg polyline#back {
  stroke: var(--clinic-surface);
}

.preloader .loader .indicator svg polyline#front {
  stroke: var(--clinic-primary);
  stroke-dasharray: 12, 36;
  stroke-dashoffset: 48;
  -webkit-animation: dash 1s linear infinite;
          animation: dash 1s linear infinite;
}

.preloader::before, .preloader::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60%;
  z-index: -1;
  background: var(--clinic-primary);
  -webkit-transition: .9s;
  transition: .9s;
}

.preloader::after {
  left: auto;
  right: 0;
}

.preloader.preloader-deactivate {
  visibility: hidden;
}

.preloader.preloader-deactivate::after, .preloader.preloader-deactivate::before {
  width: 0;
}

.preloader.preloader-deactivate .loader {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@-webkit-keyframes dash {
  62.5% {
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  62.5% {
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/*================================================
Main Banner Area CSS
=================================================*/
.main-banner {
  height: 745px;
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.item-bg1 {
  background-image: url(../../assets/img/main-banner1.jpg);
}

.item-bg2 {
  background-image: url(../../assets/img/main-banner2.jpg);
}

.item-bg3 {
  background-image: url(../../assets/img/main-banner3.jpg);
}

.main-banner-content {
  max-width: 850px;
}

.main-banner-content span {
  display: block;
  margin-bottom: 2px;
  color: var(--clinic-primary);
  font-size: 17px;
  font-family: "Vazir-FD", sans-serif;
}

.main-banner-content h1 {
  margin-bottom: 0;
  font-size: 70px;
  font-weight: 700;
}

.main-banner-content p {
  line-height: 1.8;
  color: var(--clinic-ink);
  max-width: 670px;
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 10px;
}

.main-banner-content .btn-box {
  margin-top: 30px;
}

.main-banner-content .btn-box .btn-light {
  margin-left: 12px;
}

.home-slides.owl-theme .owl-nav {
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.home-slides.owl-theme .owl-nav [class*=owl-] {
  color: var(--clinic-ink);
  margin: 0;
  padding: 0;
  background: var(--clinic-surface);
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 51px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.home-slides.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: var(--clinic-primary);
  color: var(--clinic-surface);
}

.home-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 15px;
}

.home-slides.owl-theme .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
}

.home-slides.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 3px;
  margin: 0 2px;
  background: var(--clinic-ink);
  border-radius: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.home-slides.owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--clinic-primary);
}

.home-slides.owl-theme .owl-dots .owl-dot.active span {
  width: 25px;
  background-color: var(--clinic-primary);
}

.home-slides.owl-theme:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

.circle-shape1 {
  position: absolute;
  left: 80px;
  top: 80px;
  z-index: -1;
  -webkit-animation-name: rotateMe;
          animation-name: rotateMe;
  -webkit-animation-duration: 50s;
          animation-duration: 50s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.circle-shape1 img {
  opacity: .80;
}

.circle-shape2 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-animation-name: rotateMeTwo;
          animation-name: rotateMeTwo;
  -webkit-animation-duration: 50s;
          animation-duration: 50s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.circle-shape2 img {
  opacity: .80;
}

.shape1 {
  position: absolute;
  right: 25px;
  top: 25%;
  z-index: -1;
  -webkit-animation-name: rotateMe;
          animation-name: rotateMe;
  -webkit-animation-duration: 50s;
          animation-duration: 50s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes rotateMe {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateMe {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes rotateMeTwo {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotateMeTwo {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

/*================================================
Main Services Area CSS
=================================================*/
.main-services-area {
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
}

.main-services-box {
  margin-bottom: 30px;
  background-color: var(--clinic-surface);
  -webkit-box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
          box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
  padding: 25px 20px;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}

.main-services-box .icon {
  margin-bottom: 20px;
  text-align: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  background-color: var(--clinic-primary);
  color: var(--clinic-surface);
  font-size: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.main-services-box h3 {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 5px;
  font-size: 19px;
  font-weight: 700;
}

.main-services-box h3 a {
  color: var(--clinic-ink);
}

.main-services-box h3::before {
  width: 0;
  height: 1px;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--clinic-surface);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.main-services-box p {
  line-height: 1.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-top: 10px;
  margin-bottom: 0;
}

.main-services-box::before {
  width: 0;
  height: 100%;
  z-index: -1;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--clinic-primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.main-services-box::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border: 10px solid var(--clinic-surface);
  left: -80px;
  bottom: -80px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.15;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.main-services-box:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

.main-services-box:hover::before {
  width: 100%;
}

.main-services-box:hover .icon {
  background-color: var(--clinic-heading);
  color: var(--clinic-surface);
}

.main-services-box:hover h3 a {
  color: var(--clinic-surface);
}

.main-services-box:hover h3::before {
  width: 80px;
}

.main-services-box:hover p {
  color: var(--clinic-surface);
}

.main-services-box:hover::after {
  left: -50px;
  bottom: -50px;
}

.shape2 {
  position: absolute;
  right: 0;
  bottom: -120px;
  z-index: -1;
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
}

.shape2 img {
  opacity: .70;
}

@-webkit-keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

/*================================================
About Area CSS
=================================================*/
.about-area {
  position: relative;
  z-index: 1;
}

.about-image {
  width: 100%;
  height: 100%;
  background-image: url(../../assets/img/about-img1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-image img {
  display: none;
}

.about-content {
  max-width: 555px;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 50px;
}

.about-content span {
  display: block;
  margin-bottom: 5px;
  color: var(--clinic-primary);
  font-size: 17px;
  font-family: "Vazir-FD", sans-serif;
}

.about-content h2 {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 600;
}

.about-content p {
  margin-top: 10px;
  margin-bottom: 0;
}

.about-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 0;
}

.about-content ul li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 34px;
  font-family: "Vazir-FD", sans-serif;
}

.about-content ul li i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  background-color: var(--clinic-surface);
  color: var(--clinic-primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  font-size: 11px;
  position: absolute;
  left: 0;
  top: -2px;
}

.about-content ul li:hover i {
  background-color: var(--clinic-primary);
  color: var(--clinic-surface);
}

.about-content ul li:last-child {
  margin-bottom: 0;
}

.about-content .btn {
  margin-top: 30px;
}

/*================================================
Our Mission Area CSS
=================================================*/
.our-mission-area {
  position: relative;
  z-index: 1;
}

.our-mission-image {
  width: 100%;
  height: 100%;
  background-image: url(../../assets/img/mission-img1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.our-mission-image img {
  display: none;
}

.our-mission-content {
  max-width: 555px;
  margin-left: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-right: 50px;
}

.our-mission-content .sub-title {
  display: block;
  margin-bottom: 5px;
  color: var(--clinic-primary);
  font-size: 17px;
  font-family: "Vazir-FD", sans-serif;
}

.our-mission-content h2 {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 600;
}

.our-mission-content p {
  margin-top: 10px;
  margin-bottom: 0;
}

.our-mission-content ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: 0;
  margin-top: 0;
}

.our-mission-content ul li {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
  color: var(--clinic-ink);
  font-size: 14.5px;
  line-height: 1.7;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 25px;
}

.our-mission-content ul li .icon {
  margin-bottom: 13px;
  -webkit-box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
          box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  color: var(--clinic-primary);
  font-size: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.our-mission-content ul li span {
  display: block;
  color: var(--clinic-ink);
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 17px;
}

.our-mission-content ul li:hover .icon {
  background-color: var(--clinic-primary);
  color: var(--clinic-surface);
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}

.shape3 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.shape3 img {
  opacity: .60;
}

/*================================================
Our Approach Area CSS
=================================================*/
.approach-image {
  width: 100%;
  height: 100%;
  background-image: url(../../assets/img/approach-img1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.approach-image img {
  display: none;
}

.approach-content {
  max-width: 555px;
  margin-left: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-right: 50px;
}

.approach-content .sub-title {
  display: block;
  margin-bottom: 5px;
  color: var(--clinic-primary);
  font-size: 17px;
  font-family: "Vazir-FD", sans-serif;
}

.approach-content h2 {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 600;
}

.approach-content p {
  margin-top: 10px;
  margin-bottom: 0;
}

.approach-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 0;
}

.approach-content ul li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 34px;
  font-family: "Vazir-FD", sans-serif;
}

.approach-content ul li i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  background-color: var(--clinic-surface);
  color: var(--clinic-primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  font-size: 11px;
  position: absolute;
  left: 0;
  top: -2px;
}

.approach-content ul li:hover i {
  background-color: var(--clinic-primary);
  color: var(--clinic-surface);
}

.approach-content ul li:last-child {
  margin-bottom: 0;
}

.approach-content .btn {
  margin-top: 30px;
}

/*================================================
Our Vision Area CSS
=================================================*/
.our-vision-area {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}

.single-vision-box {
  margin-bottom: 30px;
  background-color: var(--clinic-surface);
  -webkit-box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
          box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
  padding: 25px 20px;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}

.single-vision-box .icon {
  margin-bottom: 20px;
  text-align: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  background-color: var(--clinic-primary);
  color: var(--clinic-surface);
  font-size: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-vision-box h3 {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 0;
  position: relative;
  font-size: 20px;
  font-weight: 700;
}

.single-vision-box p {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-top: 12px;
  margin-bottom: 0;
}

.single-vision-box::before {
  width: 0;
  height: 100%;
  z-index: -1;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--clinic-primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-vision-box::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border: 10px solid var(--clinic-surface);
  left: -80px;
  bottom: -80px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.15;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-vision-box:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

.single-vision-box:hover::before {
  width: 100%;
}

.single-vision-box:hover .icon {
  background-color: var(--clinic-heading);
  color: var(--clinic-surface);
}

.single-vision-box:hover h3 {
  color: var(--clinic-surface);
}

.single-vision-box:hover p {
  color: var(--clinic-surface);
}

.single-vision-box:hover::after {
  left: -50px;
  bottom: -50px;
}

/*================================================
Fun Facts Area CSS
=================================================*/
.fun-facts-area {
  position: relative;
  z-index: 1;
  background-color: var(--clinic-ink);
  background-image: url(../../assets/img/map-bg1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.single-fun-facts {
  text-align: center;
}

.single-fun-facts .icon {
  font-size: 45px;
  color: var(--clinic-primary);
  margin-bottom: 10px;
}

.single-fun-facts h3 {
  color: var(--clinic-surface);
  margin-bottom: 0;
  position: relative;
  padding-left: 5px;
  font-size: 50px;
  font-weight: 600;
}

.single-fun-facts h3 .optional-icon {
  top: -25px;
  right: 5px;
  position: relative;
  font-size: 25px;
  font-weight: 300;
}

.single-fun-facts p {
  color: var(--clinic-primary);
  line-height: initial;
  margin-top: 5px;
}

/*================================================
Services Area CSS
=================================================*/
.services-area {
  position: relative;
  z-index: 1;
}

.single-services-box {
  margin-bottom: 30px;
  position: relative;
  padding: 30px;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.single-services-box.bg-1 {
  background-image: url(../../assets/img/services/1.jpg);
}

.single-services-box.bg-2 {
  background-image: url(../../assets/img/services/2.jpg);
}

.single-services-box.bg-3 {
  background-image: url(../../assets/img/services/3.jpg);
}

.single-services-box.bg-4 {
  background-image: url(../../assets/img/services/4.jpg);
}

.single-services-box.bg-5 {
  background-image: url(../../assets/img/services/5.jpg);
}

.single-services-box.bg-6 {
  background-image: url(../../assets/img/services/6.jpg);
}

.single-services-box.bg-7 {
  background-image: url(../../assets/img/services/7.jpg);
}

.single-services-box.bg-8 {
  background-image: url(../../assets/img/services/8.jpg);
}

.single-services-box.bg-9 {
  background-image: url(../../assets/img/services/9.jpg);
}

.single-services-box .icon {
  margin-bottom: 21px;
  text-align: center;
  width: 75px;
  height: 75px;
  line-height: 75px;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  background-color: var(--clinic-surface);
  color: var(--clinic-primary);
  font-size: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
          box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
}

.single-services-box h3 {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
}

.single-services-box h3 a {
  display: inline-block;
}

.single-services-box p {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-top: 12px;
  margin-bottom: 0;
}

.single-services-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clinic-surface);
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-box::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clinic-primary);
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.single-services-box .read-more-btn {
  color: var(--clinic-primary);
  display: inline-block;
  margin-top: 18px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  font-family: "Vazir-FD", sans-serif;
}

.single-services-box .read-more-btn:hover {
  color: var(--clinic-ink);
}

.single-services-box:hover {
  -webkit-box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
          box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
}

.single-services-box:hover .icon {
  border-radius: 50%;
}

.single-services-box:hover h3 {
  color: var(--clinic-surface);
}

.single-services-box:hover h3 a {
  color: var(--clinic-surface);
}

.single-services-box:hover p {
  color: var(--clinic-surface);
}

.single-services-box:hover .read-more-btn {
  color: var(--clinic-surface);
}

.single-services-box:hover .read-more-btn:hover {
  color: var(--clinic-ink);
}

.single-services-box:hover::before {
  background-color: var(--clinic-primary);
  opacity: .80;
}

.more-services-btn {
  text-align: center;
  margin-top: 20px;
}

/*================================================
Services Details Area CSS
=================================================*/
.services-details-desc .services-details-image {
  margin-bottom: 30px;
}

.services-details-desc h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 23px;
  font-weight: 600;
}

.services-details-desc .services-details-features {
  margin-top: 25px;
  margin-bottom: 25px;
}

.services-details-desc .services-features-list {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.services-details-desc .services-features-list li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 34px;
  font-family: "Vazir-FD", sans-serif;
}

.services-details-desc .services-features-list li i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  background-color: var(--clinic-surface);
  color: var(--clinic-primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  font-size: 11px;
  position: absolute;
  left: 0;
  top: -2px;
}

.services-details-desc .services-features-list li:hover i {
  background-color: var(--clinic-primary);
  color: var(--clinic-surface);
}

.services-details-desc .services-features-list li:last-child {
  margin-bottom: 0;
}

.services-details-desc .wp-block-gallery.columns-3 {
  padding-left: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 30px;
  margin-top: 20px;
}

.services-details-desc .wp-block-gallery.columns-3 li {
  -ms-flex: 0 0 33.3333%;
  -webkit-box-flex: 0;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding-right: 10px;
  padding-left: 10px;
}

.services-details-desc .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}

.services-details-desc .chart-image {
  margin-top: 35px;
}

/*================================================
Doctor Area CSS
=================================================*/
.doctor-area {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}

.doctor-area .section-title {
  margin-bottom: 30px;
}

.single-doctor-box {
  text-align: center;
  margin-bottom: 30px;
  background-color: var(--clinic-surface);
  -webkit-box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
          box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
  padding: 25px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-doctor-box .doctor-image {
  position: relative;
  border-radius: 50%;
}

.single-doctor-box .doctor-image img {
  display: inline-block !important;
  width: auto !important;
  border-radius: 50%;
}

.single-doctor-box .doctor-image .details-btn {
  position: absolute;
  top: 50%;
  display: inline-block;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 35px;
  height: 35px;
  background-color: var(--clinic-surface);
  line-height: 35px;
  border-radius: 50%;
  color: var(--clinic-primary);
  opacity: 0;
  visibility: hidden;
  margin-top: 25px;
}

.single-doctor-box .doctor-image .details-btn:hover {
  color: var(--clinic-surface);
  background-color: var(--clinic-ink);
}

.single-doctor-box .doctor-image::before {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 0;
  background-color: var(--clinic-primary);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-doctor-box .doctor-content {
  margin-top: 22px;
}

.single-doctor-box .doctor-content h3 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
}

.single-doctor-box .doctor-content h3 a {
  display: inline-block;
}

.single-doctor-box .doctor-content span {
  display: block;
  color: var(--clinic-primary);
  font-size: 14.5px;
  margin-top: 5px;
}

.single-doctor-box .doctor-content .social {
  padding-left: 0;
  list-style-type: none;
  margin-top: 18px;
  margin-bottom: 0;
}

.single-doctor-box .doctor-content .social li {
  display: inline-block;
  margin-left: 2px;
  margin-right: 2px;
}

.single-doctor-box .doctor-content .social li a {
  display: block;
  color: var(--clinic-primary);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: var(--clinic-surface);
  text-align: center;
  font-size: 14px;
}

.single-doctor-box .doctor-content .social li a:hover {
  color: var(--clinic-surface);
  background-color: var(--clinic-primary);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.single-doctor-box .doctor-content .social li:first-child {
  margin-left: 0;
}

.single-doctor-box .doctor-content .social li:last-child {
  margin-right: 0;
}

.single-doctor-box:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.single-doctor-box:hover .doctor-image .details-btn {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}

.single-doctor-box:hover .doctor-image::before {
  opacity: .90;
  visibility: visible;
}

.doctor-slides .single-doctor-box {
  margin-top: 30px;
}

.doctor-slides.owl-theme .owl-nav {
  margin-top: 0;
}

.doctor-slides.owl-theme .owl-nav [class*=owl-] {
  color: var(--clinic-ink);
  font-size: 14px;
  margin: 0;
  padding: 0;
  background: var(--clinic-border);
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 19px;
  position: absolute;
  left: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.doctor-slides.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: var(--clinic-primary);
  color: var(--clinic-surface);
}

.doctor-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: -60px;
}

/*================================================
Doctor Details Area CSS
=================================================*/
.doctor-details-area {
  position: relative;
  z-index: 1;
}

.doctor-details-image {
  text-align: center;
  background-color: var(--clinic-surface);
  -webkit-box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
          box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
  padding: 30px;
}

.doctor-details-image h3 {
  margin-bottom: 0;
  margin-top: 25px;
  font-size: 20px;
  font-weight: 700;
}

.doctor-details-image h3 a {
  display: inline-block;
}

.doctor-details-image span {
  display: block;
  color: var(--clinic-primary);
  font-size: 14.5px;
  margin-top: 7px;
}

.doctor-details-image .social {
  padding-left: 0;
  list-style-type: none;
  margin-top: 18px;
  margin-bottom: 0;
}

.doctor-details-image .social li {
  display: inline-block;
  margin-left: 2px;
  margin-right: 2px;
}

.doctor-details-image .social li a {
  display: block;
  color: var(--clinic-primary);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: var(--clinic-surface);
  text-align: center;
  font-size: 14px;
}

.doctor-details-image .social li a:hover {
  color: var(--clinic-surface);
  background-color: var(--clinic-primary);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.doctor-details-image .social li:first-child {
  margin-left: 0;
}

.doctor-details-image .social li:last-child {
  margin-right: 0;
}

.doctor-details-desc {
  padding-left: 20px;
}

.doctor-details-desc h2 {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 600;
}

.doctor-details-desc p {
  margin-top: 15px;
}

.doctor-details-desc .signature-image {
  margin-top: 25px;
}

.skill-education-desc {
  margin-top: 100px;
}

.skill-desc .sub-title {
  display: block;
  margin-bottom: 3px;
  color: var(--clinic-primary);
  font-size: 17px;
  font-family: "Vazir-FD", sans-serif;
}

.skill-desc h2 {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 600;
}

.skill-desc p {
  margin-top: 15px;
  margin-bottom: 0;
}

.skill-desc ul {
  padding-left: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-family: "Vazir-FD", sans-serif;
  margin-top: 10px;
  margin-bottom: 0;
  margin-right: -15px;
  margin-left: -15px;
}

.skill-desc ul li {
  font-family: "Vazir-FD", sans-serif;
  -ms-flex: 0 0 45%;
  -webkit-box-flex: 0;
          flex: 0 0 45%;
  max-width: 45%;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
}

.skill-desc ul li span {
  padding-left: 34px;
  display: block;
  position: relative;
}

.skill-desc ul li span i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  background-color: var(--clinic-surface);
  color: var(--clinic-primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  font-size: 11px;
  position: absolute;
  left: 0;
  top: -2px;
}

.skill-desc ul li span:hover i {
  background-color: var(--clinic-primary);
  color: var(--clinic-surface);
}

.education-desc .sub-title {
  display: block;
  margin-bottom: 3px;
  color: var(--clinic-primary);
  font-size: 17px;
  font-family: "Vazir-FD", sans-serif;
}

.education-desc h2 {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 600;
}

.education-desc p {
  margin-top: 15px;
  margin-bottom: 0;
}

.education-desc ul {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-right: -15px;
  margin-left: -15px;
  margin-bottom: 0;
  margin-top: 0;
}

.education-desc ul li {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
  color: var(--clinic-ink);
  font-size: 14.5px;
  line-height: 1.7;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 25px;
}

.education-desc ul li .icon {
  margin-bottom: 10px;
  -webkit-box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
          box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  color: var(--clinic-primary);
  font-size: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.education-desc ul li span {
  display: block;
  color: var(--clinic-ink);
  margin-bottom: 3px;
  font-weight: 600;
  font-size: 17px;
}

.education-desc ul li:hover .icon {
  background-color: var(--clinic-primary);
  color: var(--clinic-surface);
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}

/*================================================
Appointment Area CSS
=================================================*/
.appointment-area {
  position: relative;
  z-index: 1;
  background-image: url(../../assets/img/appointment-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.appointment-content {
  background-color: var(--clinic-surface);
  padding: 50px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin-left: auto;
  margin-right: 100px;
}

.appointment-content::before {
  content: '';
  position: absolute;
  z-index: -1;
  background: var(--clinic-surface);
  width: 96%;
  opacity: .62;
  height: 50%;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 3px;
}

.appointment-content .sub-title {
  display: block;
  margin-bottom: 5px;
  color: var(--clinic-primary);
  font-size: 17px;
  font-family: "Vazir-FD", sans-serif;
}

.appointment-content h2 {
  margin-bottom: 0;
  max-width: 520px;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 600;
}

.appointment-content form {
  margin-top: 5px;
}

.appointment-content form .form-group {
  position: relative;
  padding-left: 55px;
  margin-bottom: 0;
  margin-top: 30px;
}

.appointment-content form .form-group .icon {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--clinic-primary);
  font-size: 35px;
}

.appointment-content form .form-group label {
  display: block;
  text-transform: uppercase;
  color: var(--clinic-ink);
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
}

.appointment-content form .form-group .form-control {
  border: none;
  height: auto;
  border-bottom: 1px solid var(--clinic-border);
  font-size: 17px;
  font-weight: 600;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 8px;
}

.appointment-content form .form-group .form-control::-webkit-input-placeholder {
  color: var(--clinic-ink);
}

.appointment-content form .form-group .form-control:-ms-input-placeholder {
  color: var(--clinic-ink);
}

.appointment-content form .form-group .form-control::-ms-input-placeholder {
  color: var(--clinic-ink);
}

.appointment-content form .form-group .form-control::placeholder {
  color: var(--clinic-ink);
}

.appointment-content form .form-group .form-control:focus {
  border-color: var(--clinic-primary);
  padding-left: 2px;
}

.appointment-content form .form-group .nice-select {
  background-color: transparent;
  color: var(--clinic-ink);
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--clinic-border);
  height: unset;
  line-height: initial;
  padding: 0 35px 8px 0;
  font-size: 17px;
  font-weight: 600;
}

.appointment-content form .form-group .nice-select .list {
  background-color: var(--clinic-surface);
  -webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
          box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  height: 260px;
  overflow-y: scroll;
  padding-top: 10px;
  padding-bottom: 10px;
}

.appointment-content form .form-group .nice-select .list .option {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  padding-left: 20px;
  padding-right: 20px;
}

.appointment-content form .form-group .nice-select .list .option:hover {
  background-color: var(--clinic-primary) !important;
  color: var(--clinic-surface);
}

.appointment-content form .form-group .nice-select .list .option.selected {
  background-color: transparent;
}

.appointment-content form .form-group .nice-select:after {
  right: 0;
  border-color: var(--clinic-ink);
}

.appointment-content form .submit-btn {
  text-align: center;
  margin-top: 35px;
}

/*================================================
Doctor Calendar Area CSS
=================================================*/
.doctor-calendar-area {
  position: relative;
  z-index: 1;
}

.doctor-calendar-table {
  background-color: var(--clinic-surface);
  -webkit-box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
          box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
}

.doctor-calendar-table table {
  margin-bottom: 0;
}

.doctor-calendar-table table thead tr th {
  vertical-align: middle;
  text-align: center;
  background-color: var(--clinic-primary);
  border: none;
  color: var(--clinic-surface);
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  padding-top: 17px;
  padding-bottom: 15px;
}

.doctor-calendar-table table tbody tr td {
  vertical-align: middle;
  text-align: center;
  border: 1px solid var(--clinic-border);
  border-top: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  white-space: nowrap;
  padding-top: 25px;
  padding-right: 25px;
  padding-left: 25px;
  padding-bottom: 25px;
}

.doctor-calendar-table table tbody tr td:first-child {
  border-left: none;
}

.doctor-calendar-table table tbody tr td:last-child {
  border-right: none;
}

.doctor-calendar-table table tbody tr td h3 {
  margin-bottom: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 600;
}

.doctor-calendar-table table tbody tr td span {
  display: block;
  color: var(--clinic-ink);
  font-size: 14.5px;
  margin-top: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.doctor-calendar-table table tbody tr td span.time {
  display: inline-block;
  background-color: #dff5e8;
  color: var(--clinic-primary);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  line-height: 65px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 16px;
}

.doctor-calendar-table table tbody tr td:hover {
  background-color: var(--clinic-primary);
  border-color: var(--clinic-primary);
}

.doctor-calendar-table table tbody tr td:hover h3 {
  color: var(--clinic-surface);
}

.doctor-calendar-table table tbody tr td:hover span {
  color: var(--clinic-surface);
}

.doctor-calendar-table table tbody tr td:hover span.time {
  background-color: var(--clinic-surface);
  color: var(--clinic-primary);
}

.doctor-calendar-table table tbody tr:last-child td {
  border-bottom: none;
}

/*================================================
Feedback Area CSS
=================================================*/
.feedback-area {
  position: relative;
  z-index: 1;
}

.feedback-slides {
  position: relative;
}

.feedback-slides .client-feedback {
  position: relative;
  margin: 0 auto -35px;
  max-width: 900px;
}

.feedback-slides .client-feedback .single-feedback {
  text-align: center;
  background-color: var(--clinic-surface);
  -webkit-box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
          box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
  position: relative;
  padding: 75px 90px 10px 90px;
  border-radius: 5px;
  z-index: 1;
  margin-top: 35px;
  margin-bottom: 65px;
  margin-right: 50px;
  margin-left: 50px;
}

.feedback-slides .client-feedback .single-feedback h3 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
}

.feedback-slides .client-feedback .single-feedback span {
  display: block;
  color: var(--clinic-primary);
  margin-top: 5px;
  margin-bottom: 15px;
  font-family: "Vazir-FD", sans-serif;
  font-size: 14px;
}

.feedback-slides .client-feedback .single-feedback p {
  font-size: 16px;
  line-height: 1.7;
}

.feedback-slides .client-feedback .single-feedback::before {
  content: '';
  position: absolute;
  z-index: -1;
  background: var(--clinic-surface);
  right: 0;
  left: 0;
  opacity: .90;
  height: 50%;
  bottom: -20px;
  border-radius: 3px;
  -webkit-box-shadow: 0 30px 10px -20px rgba(0, 0, 0, 0.04);
          box-shadow: 0 30px 10px -20px rgba(0, 0, 0, 0.04);
  margin-left: 20px;
  margin-right: 20px;
}

.feedback-slides .client-feedback .single-feedback::after {
  content: '';
  position: absolute;
  z-index: -1;
  background: var(--clinic-surface);
  -webkit-box-shadow: 0 30px 10px -20px rgba(0, 0, 0, 0.03);
          box-shadow: 0 30px 10px -20px rgba(0, 0, 0, 0.03);
  right: 0;
  left: 0;
  opacity: .70;
  height: 50%;
  bottom: -40px;
  border-radius: 3px;
  margin-left: 40px;
  margin-right: 40px;
}

.feedback-slides .client-thumbnails {
  position: relative;
  max-width: 450px;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -80px;
}

.feedback-slides .client-thumbnails .item .img-fill {
  cursor: pointer;
  position: relative;
  text-align: center;
}

.feedback-slides .client-thumbnails .item .img-fill img {
  opacity: 0.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  position: relative;
  border: 2px solid var(--clinic-primary);
  border-radius: 50%;
  padding: 3px;
  width: 85px;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.feedback-slides .client-thumbnails .item.slick-center .img-fill img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.feedback-slides .next-arrow, .feedback-slides .prev-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: var(--clinic-border);
  border: none;
  color: #65758B;
  z-index: 1;
  border-radius: 50%;
  line-height: 40px;
  outline: 0 !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.feedback-slides .next-arrow:hover, .feedback-slides .prev-arrow:hover {
  color: var(--clinic-surface);
  background-color: var(--clinic-primary);
}

.feedback-slides .next-arrow {
  right: -20px;
}

.feedback-slides .prev-arrow {
  left: -20px;
}

.feedback-slides:hover .next-arrow, .feedback-slides:hover .prev-arrow {
  opacity: 1;
  visibility: visible;
}

.feedback-slides .slick-list {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-image {
  width: 100%;
  height: 100%;
  background-image: url(../../assets/img/faq-img1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.faq-image img {
  display: none;
}

.faq-accordion {
  max-width: 600px;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 50px;
}

.faq-accordion .sub-title {
  display: block;
  margin-bottom: 5px;
  color: var(--clinic-primary);
  font-size: 17px;
  font-family: "Vazir-FD", sans-serif;
}

.faq-accordion h2 {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 600;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 30px;
}

.faq-accordion .accordion .accordion-item {
  display: block;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  background: var(--clinic-surface);
  margin-bottom: 10px;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  padding: 12px 20px 12px 51px;
  color: var(--clinic-ink);
  position: relative;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  display: block;
  font-size: 15px;
  font-weight: 500;
  font-family: "Vazir-FD", sans-serif;
}

.faq-accordion .accordion .accordion-title i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  text-align: center;
  height: 100%;
  background: var(--clinic-surface);
  color: var(--clinic-primary);
  font-size: 14px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-accordion .accordion .accordion-title i::before {
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.faq-accordion .accordion .accordion-title.active {
  border-bottom-color: var(--clinic-border);
}

.faq-accordion .accordion .accordion-title.active i {
  background-color: var(--clinic-primary);
  color: var(--clinic-surface);
}

.faq-accordion .accordion .accordion-title.active i::before {
  content: "\f068";
}

.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 15px;
  font-size: 14.5px;
}

.faq-accordion .accordion .accordion-content.show {
  display: block;
}

.faq-contact-area {
  position: relative;
  z-index: 1;
}

.faq-contact-form {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.faq-contact-form form {
  text-align: center;
}

.faq-contact-form form .form-control {
  background-color: var(--clinic-surface);
  border: none;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
          box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
  height: 57px;
}

.faq-contact-form form .form-group {
  text-align: left;
}

.faq-contact-form form .row {
  margin-left: -7px;
  margin-right: -7px;
}

.faq-contact-form form .row .col-lg-12, .faq-contact-form form .row .col-lg-6 {
  padding-left: 7px;
  padding-right: 7px;
}

.faq-contact-form form textarea.form-control {
  height: auto;
  padding-top: 15px;
}

.faq-contact-form form .btn {
  font-size: 16px;
  margin-top: 10px;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5) !important;
          box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5) !important;
}

.faq-contact-form form .btn.disabled {
  cursor: not-allowed !important;
}

.faq-contact-form form .btn.disabled:hover::before, .faq-contact-form form .btn.disabled:focus::before {
  opacity: 1;
  visibility: visible;
}

.faq-contact-form form .btn.disabled:hover::after, .faq-contact-form form .btn.disabled:focus::after {
  opacity: 0;
  visibility: hidden;
}

.faq-contact-form form .help-block ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 5px;
  margin-bottom: 0;
}

.faq-contact-form form .help-block ul li {
  color: red;
}

.faq-contact-form form #msgSubmit {
  margin-bottom: 0;
  text-align: center !important;
}

.faq-contact-form form #msgSubmit.text-danger, .faq-contact-form form #msgSubmit.text-success {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 600;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-area {
  padding-bottom: 90px;
}

.customers-partner-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.partner-item {
  -ms-flex: 0 0 20%;
  -webkit-box-flex: 0;
          flex: 0 0 20%;
  max-width: 20%;
  padding-left: 5px;
  padding-right: 5px;
}

.partner-item a {
  display: block;
  padding: 25px;
  background: var(--clinic-surface);
  text-align: center;
  position: relative;
  margin-bottom: 10px;
}

.partner-item a::before, .partner-item a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.partner-item a::before {
  left: 0;
  top: 0;
  border-left: 3px solid var(--clinic-primary);
  border-top: 3px solid var(--clinic-primary);
}

.partner-item a::after {
  right: 0;
  bottom: 0;
  border-right: 3px solid var(--clinic-primary);
  border-bottom: 3px solid var(--clinic-primary);
}

.partner-item a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.partner-item a:hover::after, .partner-item a:hover::before {
  width: 40px;
  height: 40px;
  opacity: 1;
  visibility: visible;
}

.partner-item a:hover img {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.partner-item:nth-child(6) {
  margin-left: 10%;
}

/*================================================
Blog Area CSS
=================================================*/
.blog-area {
  padding-bottom: 70px;
}

.blog-area .pagination-area {
  margin-bottom: 30px;
}

.single-blog-post {
  margin-bottom: 30px;
}

.single-blog-post .post-image a {
  display: block;
}

.single-blog-post .post-content {
  background-color: var(--clinic-surface);
  -webkit-box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
          box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
  padding: 25px;
  position: relative;
  z-index: 1;
}

.single-blog-post .post-content .post-meta {
  margin-bottom: 9px;
}

.single-blog-post .post-content .post-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-blog-post .post-content .post-meta ul li {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
  color: var(--clinic-ink);
  position: relative;
}

.single-blog-post .post-content .post-meta ul li::before {
  position: absolute;
  right: -11px;
  top: 3px;
  width: 1px;
  height: 13px;
  background-color: var(--clinic-ink);
  content: '';
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

.single-blog-post .post-content .post-meta ul li a {
  color: var(--clinic-primary);
}

.single-blog-post .post-content .post-meta ul li:last-child {
  margin-right: 0;
}

.single-blog-post .post-content .post-meta ul li:last-child::before {
  display: none;
}

.single-blog-post .post-content h3 {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 20px;
  font-weight: 700;
}

.single-blog-post .post-content h3 a {
  display: inline-block;
}

.single-blog-post .post-content p {
  margin-top: 9px;
  margin-bottom: 0;
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .article-content {
  margin-top: 30px;
}

.blog-details-desc .article-content .entry-meta {
  margin-bottom: -10px;
}

.blog-details-desc .article-content .entry-meta ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.blog-details-desc .article-content .entry-meta ul li {
  position: relative;
  display: inline-block;
  color: var(--clinic-ink);
  margin-right: 21px;
  font-family: "Vazir-FD", sans-serif;
}

.blog-details-desc .article-content .entry-meta ul li span {
  display: inline-block;
  color: var(--clinic-ink);
}

.blog-details-desc .article-content .entry-meta ul li a {
  display: inline-block;
  color: var(--clinic-ink);
}

.blog-details-desc .article-content .entry-meta ul li a:hover {
  color: var(--clinic-primary);
}

.blog-details-desc .article-content .entry-meta ul li i {
  color: var(--clinic-primary);
  margin-right: 2px;
}

.blog-details-desc .article-content .entry-meta ul li::before {
  content: '';
  position: absolute;
  top: 11px;
  right: -15px;
  width: 6px;
  height: 1px;
  background: var(--clinic-primary);
}

.blog-details-desc .article-content .entry-meta ul li:last-child {
  margin-right: 0;
}

.blog-details-desc .article-content .entry-meta ul li:last-child::before {
  display: none;
}

.blog-details-desc .article-content h3 {
  margin-bottom: 13px;
  margin-top: 25px;
  font-size: 23px;
  font-weight: 600;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 {
  padding-left: 0;
  list-style-type: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li {
  -ms-flex: 0 0 33.3333%;
  -webkit-box-flex: 0;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding-right: 10px;
  padding-left: 10px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
  margin-bottom: 0;
}

.blog-details-desc .article-content .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 30px;
}

.blog-details-desc .article-content .features-list li {
  margin-bottom: 16px;
  position: relative;
  padding-left: 34px;
  font-family: "Vazir-FD", sans-serif;
}

.blog-details-desc .article-content .features-list li i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  background-color: var(--clinic-surface);
  color: var(--clinic-primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: inline-block;
  font-size: 11px;
  position: absolute;
  left: 0;
  top: -2px;
}

.blog-details-desc .article-content .features-list li:hover i {
  background-color: var(--clinic-primary);
  color: var(--clinic-surface);
}

.blog-details-desc .article-content .features-list li:last-child {
  margin-bottom: 0;
}

.blog-details-desc .article-footer {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}

.blog-details-desc .article-footer .article-tags {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-desc .article-footer .article-tags span {
  display: inline-block;
  color: var(--clinic-ink);
  font-size: 20px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.blog-details-desc .article-footer .article-tags a {
  display: inline-block;
  color: var(--clinic-ink);
}

.blog-details-desc .article-footer .article-tags a:hover {
  color: var(--clinic-primary);
}

.blog-details-desc .article-footer .article-share {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}

.blog-details-desc .article-footer .article-share .social {
  padding-left: 0;
  list-style-type: none;
  text-align: right;
  margin-bottom: 0;
}

.blog-details-desc .article-footer .article-share .social li {
  display: inline-block;
}

.blog-details-desc .article-footer .article-share .social li span {
  display: inline-block;
  margin-right: 2px;
  font-weight: 500;
  color: var(--clinic-ink);
}

.blog-details-desc .article-footer .article-share .social li a {
  display: block;
  color: var(--clinic-primary);
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: var(--clinic-surface);
  text-align: center;
  font-size: 14px;
}

.blog-details-desc .article-footer .article-share .social li a:hover {
  color: var(--clinic-surface);
  background-color: var(--clinic-primary);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.blog-details-desc .post-navigation {
  margin-top: 30px;
}

blockquote, .blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 50px !important;
  position: relative;
  text-align: center;
  z-index: 1;
  margin-bottom: 20px;
  margin-top: 20px;
}

blockquote p, .blockquote p {
  color: var(--clinic-ink);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 20px !important;
}

blockquote cite, .blockquote cite {
  display: none;
}

blockquote::before, .blockquote::before {
  color: #efefef;
  content: "\f10e";
  position: absolute;
  left: 50px;
  top: -50px;
  z-index: -1;
  font-family: "Font Awesome 5 Free";
  font-size: 140px;
  font-weight: 900;
}

blockquote::after, .blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--clinic-primary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.post-navigation {
  border-top: 1px solid var(--clinic-border);
  border-bottom: 1px solid var(--clinic-border);
  padding-top: 20px;
  padding-bottom: 20px;
}

.post-navigation .navigation-links {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.post-navigation .navigation-links .nav-previous {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
}

.post-navigation .navigation-links .nav-previous a i {
  margin-right: 2px;
}

.post-navigation .navigation-links .nav-next {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
  flex: 0 0 50%;
  max-width: 50%;
  text-align: right;
}

.post-navigation .navigation-links .nav-next a i {
  margin-left: 2px;
}

.post-navigation .navigation-links div a {
  display: inline-block;
  font-weight: 500;
}

.comments-area {
  padding: 25px;
  margin-top: 30px;
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
  background-color: var(--clinic-surface);
}

.comments-area .comments-title {
  position: relative;
  margin-bottom: 30px;
  line-height: initial;
  font-size: 20px;
  font-weight: 600;
}

.comments-area .comments-title::before {
  content: '';
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: var(--clinic-primary);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.comments-area ol, .comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .children {
  margin-left: 20px;
}

.comments-area .comment-body {
  border-bottom: 1px solid var(--clinic-border);
  padding-left: 65px;
  color: var(--clinic-ink);
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.comments-area .comment-body .reply {
  margin-top: 15px;
}

.comments-area .comment-body .reply a {
  border: 1px solid #ded9d9;
  color: var(--clinic-ink);
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 600;
}

.comments-area .comment-body .reply a:hover {
  color: var(--clinic-surface);
  background-color: var(--clinic-primary);
  border-color: var(--clinic-primary);
}

.comments-area .comment-meta {
  margin-bottom: .8em;
}

.comments-area .comment-author {
  font-size: 16px;
  margin-bottom: 0.4em;
  position: relative;
  z-index: 2;
}

.comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
}

.comments-area .comment-author .fn {
  font-weight: 600;
}

.comments-area .comment-author .says {
  display: none;
}

.comments-area .comment-metadata {
  color: var(--clinic-ink);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}

.comments-area .comment-metadata a {
  color: var(--clinic-ink);
}

.comments-area .comment-metadata a:hover {
  color: var(--clinic-primary);
}

.comments-area .comment-content p {
  font-size: 14px;
}

.comments-area .comment-respond {
  margin-top: 30px;
}

.comments-area .comment-respond .comment-reply-title {
  margin-bottom: 0;
  position: relative;
  font-size: 20px;
  font-weight: 600;
}

.comments-area .comment-respond .comment-reply-title::before {
  content: '';
  height: 25px;
  width: 3px;
  left: -25px;
  position: absolute;
  background: var(--clinic-primary);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
  display: inline-block;
}

.comments-area .comment-respond .comment-form {
  overflow: hidden;
}

.comments-area .comment-respond .comment-notes {
  margin-bottom: 0;
  margin-top: 10px;
}

.comments-area .comment-respond .comment-notes .required {
  color: red;
}

.comments-area .comment-respond .comment-form-comment {
  margin-top: 15px;
  float: left;
  width: 100%;
}

.comments-area .comment-respond label {
  display: block;
  font-weight: 500;
  color: var(--clinic-ink);
  margin-bottom: 5px;
}

.comments-area .comment-respond input[type="date"], .comments-area .comment-respond input[type="time"], .comments-area .comment-respond input[type="datetime-local"], .comments-area .comment-respond input[type="week"], .comments-area .comment-respond input[type="month"], .comments-area .comment-respond input[type="text"], .comments-area .comment-respond input[type="email"], .comments-area .comment-respond input[type="url"], .comments-area .comment-respond input[type="password"], .comments-area .comment-respond input[type="search"], .comments-area .comment-respond input[type="tel"], .comments-area .comment-respond input[type="number"], .comments-area .comment-respond textarea {
  display: block;
  width: 100%;
  background-color: var(--clinic-surface);
  border: 1px solid var(--clinic-border);
  padding: 0.625em 0.7375em;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-respond input[type="date"]:focus, .comments-area .comment-respond input[type="time"]:focus, .comments-area .comment-respond input[type="datetime-local"]:focus, .comments-area .comment-respond input[type="week"]:focus, .comments-area .comment-respond input[type="month"]:focus, .comments-area .comment-respond input[type="text"]:focus, .comments-area .comment-respond input[type="email"]:focus, .comments-area .comment-respond input[type="url"]:focus, .comments-area .comment-respond input[type="password"]:focus, .comments-area .comment-respond input[type="search"]:focus, .comments-area .comment-respond input[type="tel"]:focus, .comments-area .comment-respond input[type="number"]:focus, .comments-area .comment-respond textarea:focus {
  border-color: var(--clinic-primary);
}

.comments-area .comment-respond .comment-form-author {
  float: left;
  width: 50%;
  padding-right: 10px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-email {
  float: left;
  width: 50%;
  padding-left: 12px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 6px;
}

.comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: var(--clinic-ink);
  font-weight: normal;
}

.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}

.comments-area .comment-respond .form-submit input {
  background: var(--clinic-primary);
  border: none;
  color: var(--clinic-surface);
  padding: 14px 30px 12px;
  display: inline-block;
  cursor: pointer;
  outline: 0;
  border-radius: 0;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
  font-size: 14px;
}

.comments-area .comment-respond .form-submit input:hover, .comments-area .comment-respond .form-submit input:focus {
  color: var(--clinic-surface);
  background-color: var(--clinic-ink);
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
  height: 300px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-title-bg1 {
  background-image: url(../../assets/img/page-title/1.jpg);
}

.page-title-bg2 {
  background-image: url(../../assets/img/page-title/2.jpg);
}

.page-title-bg3 {
  background-image: url(../../assets/img/page-title/3.jpg);
}

.page-title-bg4 {
  background-image: url(../../assets/img/page-title/4.jpg);
}

.page-title-bg5 {
  background-image: url(../../assets/img/page-title/5.jpg);
}

.page-title-content {
  text-align: center;
}

.page-title-content h2 {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 40px;
  font-weight: 600;
}

.page-title-content ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 15px;
  margin-bottom: 0;
}

.page-title-content ul li {
  display: inline-block;
  position: relative;
  color: var(--clinic-primary);
  font-size: 16px;
  font-family: "Vazir-FD", sans-serif;
  margin-left: 8px;
  margin-right: 8px;
}

.page-title-content ul li a {
  color: #65758B;
}

.page-title-content ul li a:hover {
  color: var(--clinic-primary);
}

.page-title-content ul li::before {
  content: "\f054";
  position: absolute;
  color: #65758B;
  right: -13px;
  top: 5px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
}

.page-title-content ul li:last-child::before {
  display: none;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  margin-top: 30px;
  text-align: center;
}

.pagination-area .page-numbers {
  width: 40px;
  height: 40px;
  margin: 0 3px;
  display: inline-block;
  background-color: var(--clinic-surface);
  line-height: 40px;
  color: var(--clinic-ink);
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
          box-shadow: 0 2px 10px 0 #d8dde6;
  font-size: 17px;
  font-weight: 600;
}

.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
  background: var(--clinic-primary);
  color: var(--clinic-surface);
  -webkit-box-shadow: 0 2px 10px 0 var(--clinic-primary);
          box-shadow: 0 2px 10px 0 var(--clinic-primary);
}

/*================================================
Sidebar Widget Area CSS
=================================================*/
.widget-area .widget {
  margin-top: 35px;
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
  background-color: var(--clinic-surface);
  padding: 25px;
}

.widget-area .widget:first-child {
  margin-top: 0;
}

.widget-area .widget .widget-title {
  border-bottom: 1px solid var(--clinic-border);
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: capitalize;
  position: relative;
  font-weight: 600;
  font-size: 20px;
}

.widget-area .widget .widget-title::before {
  content: '';
  position: absolute;
  background: var(--clinic-primary);
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.widget-area .widget_search form {
  position: relative;
}

.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.widget-area .widget_search form .screen-reader-text {
  display: none;
}

.widget-area .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid var(--clinic-border);
  width: 100%;
  display: block;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_search form .search-field:focus {
  border-color: var(--clinic-primary);
}

.widget-area .widget_search form button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  border: none;
  color: var(--clinic-surface);
  background-color: var(--clinic-primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_search form button:hover {
  color: var(--clinic-surface);
  background-color: var(--clinic-ink);
}

.widget-area .widget_fovia_posts_thumb {
  position: relative;
  overflow: hidden;
}

.widget-area .widget_fovia_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 20px;
}

.widget-area .widget_fovia_posts_thumb .item:last-child {
  margin-bottom: 0;
}

.widget-area .widget_fovia_posts_thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  position: relative;
  width: 80px;
  margin-right: 15px;
}

.widget-area .widget_fovia_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}

.widget-area .widget_fovia_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(../../assets/img/blog/5.jpg);
}

.widget-area .widget_fovia_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(../../assets/img/blog/8.jpg);
}

.widget-area .widget_fovia_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: url(../../assets/img/blog/9.jpg);
}

.widget-area .widget_fovia_posts_thumb .item .info {
  overflow: hidden;
}

.widget-area .widget_fovia_posts_thumb .item .info time {
  display: block;
  color: var(--clinic-ink);
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
}

.widget-area .widget_fovia_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 600;
}

.widget-area .widget_recent_entries ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.widget-area .widget_recent_entries ul li {
  position: relative;
  margin-bottom: 12px;
  color: var(--clinic-ink);
  padding-left: 17px;
  line-height: 1.5;
  font-weight: 500;
}

.widget-area .widget_recent_entries ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_recent_entries ul li::before {
  background: var(--clinic-primary);
  position: absolute;
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 7px;
}

.widget-area .widget_recent_entries ul li .post-date {
  display: block;
  font-size: 13px;
  color: var(--clinic-ink);
  margin-top: 4px;
}

.widget-area .widget_recent_comments ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.widget-area .widget_recent_comments ul li {
  position: relative;
  margin-bottom: 12px;
  color: var(--clinic-ink);
  padding-left: 17px;
  line-height: 1.5;
  font-weight: 500;
}

.widget-area .widget_recent_comments ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_recent_comments ul li::before {
  background: var(--clinic-primary);
  position: absolute;
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 7px;
}

.widget-area .widget_recent_comments ul li span {
  display: inline-block;
}

.widget-area .widget_recent_comments ul li a {
  display: inline-block;
}

.widget-area .widget_archive ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.widget-area .widget_archive ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 17px;
  font-weight: 500;
}

.widget-area .widget_archive ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_archive ul li::before {
  background: var(--clinic-primary);
  position: absolute;
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 7px;
}

.widget-area .widget_categories ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.widget-area .widget_categories ul li {
  position: relative;
  margin-bottom: 12px;
  color: var(--clinic-ink);
  padding-left: 17px;
  font-weight: 500;
}

.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_categories ul li::before {
  background: var(--clinic-primary);
  position: absolute;
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 7px;
}

.widget-area .widget_categories ul li a {
  display: inline-block;
}

.widget-area .widget_categories ul li .post-count {
  float: right;
}

.widget-area .widget_meta ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.widget-area .widget_meta ul li {
  position: relative;
  margin-bottom: 12px;
  color: var(--clinic-ink);
  padding-left: 17px;
  font-weight: 500;
}

.widget-area .widget_meta ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_meta ul li::before {
  background: var(--clinic-primary);
  position: absolute;
  height: 7px;
  width: 7px;
  content: '';
  left: 0;
  top: 7px;
}

.widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 12px;
}

.widget-area .tagcloud a {
  display: inline-block;
  color: var(--clinic-ink);
  font-weight: 500;
  font-size: 14px !important;
  padding: 7px 10px;
  border: 1px dashed var(--clinic-border);
  margin-top: 8px;
  margin-right: 4px;
}

.widget-area .tagcloud a:hover, .widget-area .tagcloud a:focus {
  background-color: var(--clinic-primary);
  color: var(--clinic-surface);
  border-color: var(--clinic-primary);
}

.widget-area .widget_services_list ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
  background-color: var(--clinic-surface);
}

.widget-area .widget_services_list ul li a {
  display: block;
  position: relative;
  border-bottom: 1px solid var(--clinic-border);
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 35px;
  color: #65758B;
  z-index: 1;
  font-weight: 500;
}

.widget-area .widget_services_list ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--clinic-ink);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.widget-area .widget_services_list ul li a i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.widget-area .widget_services_list ul li a.active, .widget-area .widget_services_list ul li a:hover {
  background-color: var(--clinic-primary);
  color: var(--clinic-surface);
  padding-left: 20px;
}

.widget-area .widget_services_list ul li a.active::before, .widget-area .widget_services_list ul li a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.widget-area .widget_services_list ul li:last-child a {
  border-bottom: none;
}

.widget-area .widget_download ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
  background-color: var(--clinic-surface);
}

.widget-area .widget_download ul li a {
  display: block;
  position: relative;
  border-bottom: 1px solid var(--clinic-border);
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 35px;
  color: #65758B;
  z-index: 1;
  font-weight: 500;
}

.widget-area .widget_download ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--clinic-ink);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.widget-area .widget_download ul li a i {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.widget-area .widget_download ul li a.active, .widget-area .widget_download ul li a:hover {
  background-color: var(--clinic-primary);
  color: var(--clinic-surface);
  padding-left: 20px;
}

.widget-area .widget_download ul li a.active::before, .widget-area .widget_download ul li a:hover::before {
  opacity: 1;
  visibility: visible;
  width: 5px;
}

.widget-area .widget_download ul li:last-child a {
  border-bottom: none;
}

.widget-area .widget_appointment form {
  margin-top: 5px;
  text-align: center;
}

.widget-area .widget_appointment form .form-group {
  position: relative;
  padding-left: 45px;
  text-align: left;
  margin-bottom: 0;
  margin-top: 25px;
}

.widget-area .widget_appointment form .form-group .icon {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--clinic-primary);
  font-size: 30px;
}

.widget-area .widget_appointment form .form-group label {
  display: block;
  text-transform: uppercase;
  color: var(--clinic-ink);
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 500;
}

.widget-area .widget_appointment form .form-group .form-control {
  border: none;
  height: auto;
  border-bottom: 1px solid var(--clinic-border);
  font-size: 14px;
  font-weight: 600;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 8px;
}

.widget-area .widget_appointment form .form-group .form-control::-webkit-input-placeholder {
  color: var(--clinic-ink);
}

.widget-area .widget_appointment form .form-group .form-control:-ms-input-placeholder {
  color: var(--clinic-ink);
}

.widget-area .widget_appointment form .form-group .form-control::-ms-input-placeholder {
  color: var(--clinic-ink);
}

.widget-area .widget_appointment form .form-group .form-control::placeholder {
  color: var(--clinic-ink);
}

.widget-area .widget_appointment form .form-group .form-control:focus {
  border-color: var(--clinic-primary);
  padding-left: 2px;
}

.widget-area .widget_appointment form .form-group .nice-select {
  background-color: transparent;
  color: var(--clinic-ink);
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--clinic-border);
  height: unset;
  line-height: initial;
  padding: 0 35px 8px 0;
  font-size: 14px;
  font-weight: 600;
}

.widget-area .widget_appointment form .form-group .nice-select .list {
  background-color: var(--clinic-surface);
  -webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
          box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  height: 260px;
  overflow-y: scroll;
  padding-top: 10px;
  padding-bottom: 10px;
}

.widget-area .widget_appointment form .form-group .nice-select .list .option {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  padding-left: 20px;
  padding-right: 20px;
}

.widget-area .widget_appointment form .form-group .nice-select .list .option:hover {
  background-color: var(--clinic-primary) !important;
  color: var(--clinic-surface);
}

.widget-area .widget_appointment form .form-group .nice-select .list .option.selected {
  background-color: transparent;
}

.widget-area .widget_appointment form .form-group .nice-select:after {
  right: 0;
  border-color: var(--clinic-ink);
}

.widget-area .widget_appointment form .btn {
  margin-top: 20px;
}

/*================================================
Shop Area CSS
=================================================*/
.woocommerce-topbar {
  margin-bottom: 40px;
}

.woocommerce-topbar .woocommerce-result-count p {
  font-size: 16px;
}

.woocommerce-topbar .woocommerce-topbar-ordering {
  text-align: right;
}

.woocommerce-topbar .woocommerce-topbar-ordering .nice-select {
  background-color: var(--clinic-surface);
  color: var(--clinic-ink);
  border-radius: 0;
  border: none;
  -webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
          box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  float: unset;
  height: unset;
  line-height: initial;
  padding: 15px 35px 15px 20px;
  font-size: 15px;
}

.woocommerce-topbar .woocommerce-topbar-ordering .nice-select .list {
  background-color: var(--clinic-surface);
  -webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
          box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.woocommerce-topbar .woocommerce-topbar-ordering .nice-select .list .option {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  padding-left: 20px;
  padding-right: 20px;
}

.woocommerce-topbar .woocommerce-topbar-ordering .nice-select .list .option:hover {
  background-color: var(--clinic-primary) !important;
  color: var(--clinic-surface);
}

.woocommerce-topbar .woocommerce-topbar-ordering .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}

.woocommerce-topbar .woocommerce-topbar-ordering .nice-select:after {
  right: 20px;
}

.single-product-box {
  margin-bottom: 30px;
  background-color: var(--clinic-surface);
  -webkit-box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
}

.single-product-box .product-image {
  overflow: hidden;
  position: relative;
  text-align: left;
}

.single-product-box .product-image a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-product-box .product-image a img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  margin-left: 20px;
}

.single-product-box .product-image .add-to-cart-btn {
  position: absolute;
  bottom: -46px;
  left: 0;
  width: 100%;
  background-color: var(--clinic-ink);
  color: var(--clinic-surface);
  padding: 12px 20px;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  font-size: 15px;
  font-weight: 600;
}

.single-product-box .product-image .add-to-cart-btn i {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.single-product-box .product-image .add-to-cart-btn:hover {
  background-color: var(--clinic-primary);
  color: var(--clinic-surface);
}

.single-product-box .product-image .sale-btn {
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: red;
  color: var(--clinic-surface);
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}

.single-product-box .product-content {
  padding: 25px;
}

.single-product-box .product-content h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.single-product-box .product-content .price {
  color: var(--clinic-ink);
  font-family: "Vazir-FD", sans-serif;
  font-weight: 500;
  font-size: 14px;
}

.single-product-box .product-content .price .old {
  text-decoration: line-through;
  color: #65758B;
  font-size: 13px;
}

.single-product-box .product-content .rating {
  margin-top: 10px;
  color: #ffb708;
  font-size: 13px;
}

.single-product-box .product-content .rating i {
  margin-right: -1px;
}

.single-product-box:hover .product-image a img:nth-child(2) {
  opacity: 1;
  visibility: visible;
  margin-left: 0;
}

.single-product-box:hover .product-image .add-to-cart-btn {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

/*================================================
Product Details Area CSS
=================================================*/
.product-details-desc h3 {
  margin-bottom: 12px;
  font-size: 23px;
  font-weight: 600;
}

.product-details-desc p {
  margin-bottom: 0;
}

.product-details-desc .price {
  margin-bottom: 10px;
  color: var(--clinic-ink);
  font-weight: 500;
}

.product-details-desc .price .old-price {
  text-decoration: line-through;
  color: #65758B;
  font-size: 13px;
}

.product-details-desc .product-review {
  margin-bottom: 15px;
}

.product-details-desc .product-review .rating {
  display: inline-block;
  padding-right: 5px;
  font-size: 14px;
}

.product-details-desc .product-review .rating i {
  color: #ffba0a;
}

.product-details-desc .product-review .rating-count {
  display: inline-block;
  color: var(--clinic-ink);
  border-bottom: 1px solid var(--clinic-ink);
  line-height: initial;
}

.product-details-desc .product-review .rating-count:hover {
  color: var(--clinic-primary);
  border-color: var(--clinic-primary);
}

.product-details-desc .product-add-to-cart {
  margin-top: 20px;
}

.product-details-desc .product-add-to-cart .input-counter {
  max-width: 130px;
  min-width: 130px;
  margin-right: 10px;
  text-align: center;
  display: inline-block;
  position: relative;
}

.product-details-desc .product-add-to-cart .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #d0d0d0;
  width: 40px;
  height: 100%;
  line-height: 48px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.product-details-desc .product-add-to-cart .input-counter span.minus-btn {
  left: 0;
}

.product-details-desc .product-add-to-cart .input-counter span.plus-btn {
  right: 0;
}

.product-details-desc .product-add-to-cart .input-counter span:hover {
  color: var(--clinic-primary);
}

.product-details-desc .product-add-to-cart .input-counter input {
  height: 45px;
  color: var(--clinic-ink);
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}

.product-details-desc .product-add-to-cart .input-counter input::-webkit-input-placeholder {
  color: var(--clinic-ink);
}

.product-details-desc .product-add-to-cart .input-counter input:-ms-input-placeholder {
  color: var(--clinic-ink);
}

.product-details-desc .product-add-to-cart .input-counter input::-ms-input-placeholder {
  color: var(--clinic-ink);
}

.product-details-desc .product-add-to-cart .input-counter input::placeholder {
  color: var(--clinic-ink);
}

.product-details-desc .product-add-to-cart .btn {
  height: 45px;
  top: -2px;
  position: relative;
  line-height: 48px;
  padding-top: 0;
  padding-bottom: 0;
}

.product-details-desc .product-add-to-cart .btn i {
  margin-right: 2px;
}

.product-details-desc .buy-checkbox-btn {
  margin-top: 20px;
}

.product-details-desc .buy-checkbox-btn input {
  display: none;
}

.product-details-desc .buy-checkbox-btn .cbx {
  margin: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  cursor: pointer;
}

.product-details-desc .buy-checkbox-btn .cbx span {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.product-details-desc .buy-checkbox-btn .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  -webkit-transform: scale(1);
          transform: scale(1);
  vertical-align: middle;
  border: 1px solid #ebebeb;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.product-details-desc .buy-checkbox-btn .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: var(--clinic-surface);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  -webkit-transition: stroke-dashoffset .18s ease;
  transition: stroke-dashoffset .18s ease;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: stroke-dashoffset .18s ease;
  transition: stroke-dashoffset .18s ease;
}

.product-details-desc .buy-checkbox-btn .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--clinic-ink);
  display: block;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 1;
  border-radius: 50%;
  -webkit-transition: transform .18s ease, opacity .18s ease;
  transition: transform .18s ease, opacity .18s ease;
}

.product-details-desc .buy-checkbox-btn .cbx span:last-child {
  padding-left: 4px;
  color: var(--clinic-ink);
}

.product-details-desc .buy-checkbox-btn .cbx:hover span:first-child {
  border-color: var(--clinic-ink);
}

.product-details-desc .buy-checkbox-btn .inp-cbx:checked + .cbx span:first-child {
  background: var(--clinic-ink);
  border-color: var(--clinic-ink);
  -webkit-animation: wave .18s ease;
          animation: wave .18s ease;
}

.product-details-desc .buy-checkbox-btn .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.product-details-desc .buy-checkbox-btn .inp-cbx:checked + .cbx span:first-child:before {
  -webkit-transform: scale(3.5);
          transform: scale(3.5);
  opacity: 0;
  -webkit-transition: transform .18s ease, opacity .18s ease;
  transition: transform .18s ease, opacity .18s ease;
}

.product-details-desc .buy-checkbox-btn .item:not(:first-child) {
  margin-top: 15px;
}

.product-details-desc .buy-checkbox-btn .btn {
  display: block;
  width: 100%;
}

.product-details-desc .buy-checkbox-btn .btn-light {
  background-color: var(--clinic-border);
  border: none;
  padding: 17px 25px 15.5px 25px;
}

.product-details-desc .custom-payment-options {
  margin-top: 20px;
}

.product-details-desc .custom-payment-options span {
  display: block;
  color: var(--clinic-ink);
  margin-bottom: 8px;
}

.product-details-desc .custom-payment-options .payment-methods a {
  display: inline-block;
}

.product-details-desc .custom-payment-options .payment-methods a img {
  width: 40px;
}

.tab .tabs_item {
  display: none;
}

.tab .tabs_item:first-child {
  display: block;
}

.products-details-tab {
  margin-top: 50px;
}

.products-details-tab .tabs {
  list-style-type: none;
  margin-bottom: -1px;
  padding-left: 0;
}

.products-details-tab .tabs li {
  display: inline-block;
  line-height: initial;
  margin-right: 5px;
}

.products-details-tab .tabs li a {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  color: var(--clinic-ink);
  border: 1px dashed var(--clinic-border);
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 30px;
  padding-left: 48px;
  font-weight: 600;
  font-size: 14px;
}

.products-details-tab .tabs li a .dot {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 30px;
  width: 12px;
  height: 12px;
  border: 1px solid var(--clinic-ink);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
}

.products-details-tab .tabs li a .dot::before {
  position: absolute;
  top: 0;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clinic-ink);
  margin: 2px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.products-details-tab .tabs li a:hover, .products-details-tab .tabs li a:focus {
  color: var(--clinic-surface);
  background-color: var(--clinic-primary);
  border-color: var(--clinic-primary);
}

.products-details-tab .tabs li a:hover .dot, .products-details-tab .tabs li a:focus .dot {
  border-color: var(--clinic-surface);
}

.products-details-tab .tabs li a:hover .dot::before, .products-details-tab .tabs li a:focus .dot::before {
  background: var(--clinic-surface);
}

.products-details-tab .tabs li.current a {
  color: var(--clinic-surface);
  background-color: var(--clinic-primary);
  border-color: var(--clinic-primary);
}

.products-details-tab .tabs li.current a .dot {
  border-color: var(--clinic-surface);
}

.products-details-tab .tabs li.current a .dot::before {
  background: var(--clinic-surface);
}

.products-details-tab .tabs li:last-child {
  margin-right: 0;
}

.products-details-tab .tab_content {
  border: 1px dashed var(--clinic-border);
  padding: 30px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content p {
  margin-bottom: 20px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content p:last-child {
  margin-bottom: 0;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: left;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information li {
  border: 1px solid var(--clinic-border);
  border-bottom: none;
  padding: 10px 15px;
  color: var(--clinic-ink);
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information li:last-child {
  border-bottom: 1px solid var(--clinic-border);
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .additional-information li span {
  display: inline-block;
  width: 30%;
  color: var(--clinic-ink);
  font-weight: 500;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title {
  position: relative;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .rating {
  display: inline-block;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .rating .fas.fa-star {
  color: #ffba0a;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .rating i {
  color: #ebebeb;
  font-size: 14px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title p {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 5px;
  line-height: initial;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-title .btn {
  position: absolute;
  right: 0;
  bottom: 0;
  padding-right: 25px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments {
  margin-top: 35px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item {
  margin-top: 30px;
  position: relative;
  padding-right: 200px;
  border-top: 1px dashed var(--clinic-border);
  padding-top: 30px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .rating .fas.fa-star {
  color: #ffba0a;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .rating i {
  font-size: 14px;
  color: #ebebeb;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item h3 {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item span {
  margin-bottom: 10px;
  font-size: 13px;
  display: block;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item span strong {
  font-weight: 600;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item p {
  margin-bottom: 0;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .review-report-link {
  position: absolute;
  right: 0;
  color: var(--clinic-ink);
  top: 40px;
  text-decoration: underline;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-comments .review-item .review-report-link:hover {
  color: var(--clinic-primary);
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form {
  margin-top: 30px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form h3 {
  margin-bottom: 20px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form {
  max-width: 800px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .form-group {
  margin-bottom: 15px;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .form-group .form-control {
  height: 55px;
  -webkit-box-shadow: 0 5px 28.5px 1.5px rgba(149, 152, 200, 0.1) !important;
          box-shadow: 0 5px 28.5px 1.5px rgba(149, 152, 200, 0.1) !important;
  border: none;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .form-group textarea.form-control {
  padding-top: 15px;
  height: auto;
}

.products-details-tab .tab_content .tabs_item .products-details-tab-content .product-review-form .review-form form .btn {
  margin-top: 10px;
  -webkit-box-shadow: 0 5px 28.5px 1.5px rgba(149, 152, 200, 0.8) !important;
          box-shadow: 0 5px 28.5px 1.5px rgba(149, 152, 200, 0.8) !important;
  padding-right: 25px;
}

.related-products {
  margin-top: 70px;
}

.related-products .section-title {
  margin-bottom: 10px;
}

.related-products .single-product-box {
  margin-bottom: 0;
  margin-top: 30px;
}

/*================================================
Cart Area CSS
=================================================*/
.cart-table table {
  margin-bottom: 0;
}

.cart-table table thead tr th {
  border-bottom-width: 0px;
  vertical-align: middle;
  padding: 0 0 15px;
  text-transform: uppercase;
  border: none;
  white-space: nowrap;
  font-weight: 500;
}

.cart-table table tbody tr td {
  vertical-align: middle;
  color: var(--clinic-ink);
  white-space: nowrap;
  padding-left: 0;
  padding-right: 0;
  border-color: #eaedff;
  border-left: none;
  border-right: none;
}

.cart-table table tbody tr td.product-thumbnail a {
  display: block;
}

.cart-table table tbody tr td.product-thumbnail a img {
  width: 80px;
}

.cart-table table tbody tr td.product-name a {
  color: var(--clinic-ink);
  font-weight: 500;
  display: inline-block;
}

.cart-table table tbody tr td.product-name a:hover {
  color: var(--clinic-ink);
}

.cart-table table tbody tr td.product-subtotal .remove {
  color: red;
  float: right;
  position: relative;
  top: -1px;
}

.cart-table table tbody tr td.product-quantity .input-counter {
  max-width: 130px;
  min-width: 130px;
  text-align: center;
  display: inline-block;
  position: relative;
}

.cart-table table tbody tr td.product-quantity .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #d0d0d0;
  width: 40px;
  height: 100%;
  line-height: 48px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.cart-table table tbody tr td.product-quantity .input-counter span.minus-btn {
  left: 0;
}

.cart-table table tbody tr td.product-quantity .input-counter span.plus-btn {
  right: 0;
}

.cart-table table tbody tr td.product-quantity .input-counter span:hover {
  color: var(--clinic-ink);
}

.cart-table table tbody tr td.product-quantity .input-counter input {
  height: 45px;
  color: var(--clinic-ink);
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}

.cart-table table tbody tr td.product-quantity .input-counter input::-webkit-input-placeholder {
  color: var(--clinic-ink);
}

.cart-table table tbody tr td.product-quantity .input-counter input:-ms-input-placeholder {
  color: var(--clinic-ink);
}

.cart-table table tbody tr td.product-quantity .input-counter input::-ms-input-placeholder {
  color: var(--clinic-ink);
}

.cart-table table tbody tr td.product-quantity .input-counter input::placeholder {
  color: var(--clinic-ink);
}

.cart-table table tbody tr td.product-subtotal {
  overflow: hidden;
}

.cart-buttons {
  margin-top: 30px;
}

.cart-buttons .shopping-coupon-code {
  position: relative;
  max-width: 530px;
}

.cart-buttons .shopping-coupon-code .form-control {
  height: 50px;
}

.cart-buttons .shopping-coupon-code button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: var(--clinic-ink);
  color: var(--clinic-surface);
  border: none;
  padding: 0 25px;
  font-weight: 500;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.cart-buttons .shopping-coupon-code button:hover {
  background-color: var(--clinic-primary);
}

.cart-totals {
  background: var(--clinic-surface);
  padding: 40px;
  max-width: 620px;
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  margin-left: auto;
  margin-top: 50px;
}

.cart-totals h3 {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 600;
}

.cart-totals ul {
  padding: 0;
  margin: 0 0 25px;
  list-style-type: none;
}

.cart-totals ul li {
  border: 1px solid #eaedff;
  padding: 10px 15px;
  color: var(--clinic-ink);
  overflow: hidden;
  font-weight: 500;
}

.cart-totals ul li:first-child {
  border-bottom: none;
}

.cart-totals ul li:last-child {
  border-top: none;
}

.cart-totals ul li b {
  font-weight: 500;
}

.cart-totals ul li span {
  float: right;
  color: var(--clinic-ink);
  font-weight: normal;
  font-size: 14px;
}

/*================================================
Checkout Area CSS
=================================================*/
.user-actions {
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background: var(--clinic-surface);
  padding: 18px 20px 15px;
  margin-bottom: 65px;
  border-top: 3px solid var(--clinic-primary);
  position: relative;
}

.user-actions::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -35px;
  width: 100%;
  height: 1px;
  background: var(--clinic-border);
}

.user-actions i {
  color: var(--clinic-primary);
  margin-right: 2px;
}

.user-actions span {
  display: inline-block;
  font-weight: 500;
  color: var(--clinic-primary);
}

.user-actions span a {
  display: inline-block;
  color: var(--clinic-ink);
}

.user-actions span a:hover, .user-actions span a:focus {
  color: var(--clinic-primary);
}

.billing-details .title {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--clinic-border);
  font-size: 20px;
  font-weight: 600;
}

.billing-details .title::before {
  content: '';
  position: absolute;
  background: var(--clinic-primary);
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.billing-details .form-group {
  margin-bottom: 20px;
}

.billing-details .form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 500;
}

.billing-details .form-group label .required {
  color: red;
}

.billing-details .form-group .nice-select {
  float: unset;
  line-height: 45px;
  color: var(--clinic-ink);
  font-weight: 500;
  font-size: 14px;
  padding-top: 0;
  padding-bottom: 0;
}

.billing-details .form-group .nice-select .list {
  background-color: var(--clinic-surface);
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
          box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.billing-details .form-group .nice-select .list .option {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-left: 20px;
  padding-right: 20px;
}

.billing-details .form-group .nice-select .list .option:hover {
  background-color: var(--clinic-primary) !important;
  color: var(--clinic-surface);
}

.billing-details .form-group .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: 600;
}

.billing-details .form-group .nice-select:after {
  right: 20px;
}

.billing-details .form-group .form-control {
  height: 50px;
}

.billing-details .form-group textarea.form-control {
  height: auto;
  padding-top: 15px;
}

.billing-details .form-check {
  margin-bottom: 20px;
}

.billing-details .form-check .form-check-label {
  color: var(--clinic-ink);
}

.billing-details .form-check label {
  position: relative;
  left: -3px;
  top: 1px;
  font-size: 14px;
  font-weight: 500;
}

.billing-details .col-lg-12:last-child .form-group {
  margin-bottom: 0;
}

.order-details .title {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--clinic-border);
  font-size: 21px;
  font-weight: 600;
}

.order-details .title::before {
  content: '';
  position: absolute;
  background: var(--clinic-primary);
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.order-details .order-table table {
  margin-bottom: 0;
}

.order-details .order-table table thead tr th {
  border-bottom-width: 0;
  vertical-align: middle;
  border-color: #eaedff;
  padding-left: 20px;
  padding-top: 15px;
  padding-right: 20px;
  padding-bottom: 15px;
  font-weight: 500;
  font-size: 16px;
}

.order-details .order-table table tbody tr td {
  vertical-align: middle;
  color: var(--clinic-ink);
  border-color: #eaedff;
  padding-left: 20px;
  padding-right: 20px;
}

.order-details .order-table table tbody tr td.product-name a {
  color: var(--clinic-ink);
  display: inline-block;
  font-weight: 500;
}

.order-details .order-table table tbody tr td.product-name a:hover {
  color: var(--clinic-primary);
}

.order-details .order-table table tbody tr td.order-subtotal span, .order-details .order-table table tbody tr td.order-shipping span, .order-details .order-table table tbody tr td.total-price span {
  color: var(--clinic-ink);
  font-weight: 500;
}

.order-details .order-table table tbody tr td.shipping-price, .order-details .order-table table tbody tr td.order-subtotal-price, .order-details .order-table table tbody tr td.product-subtotal {
  font-weight: 500;
}

.order-details .payment-box {
  background-color: var(--clinic-surface);
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  margin-top: 30px;
  padding: 30px;
}

.order-details .payment-box .payment-method p {
  font-size: 14px;
}

.order-details .payment-box .payment-method p [type="radio"]:checked, .order-details .payment-box .payment-method p [type="radio"]:not(:checked) {
  display: none;
}

.order-details .payment-box .payment-method p [type="radio"]:checked + label, .order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label {
  padding-left: 27px;
  cursor: pointer;
  display: block;
  color: var(--clinic-ink);
  position: relative;
  margin-bottom: 8px;
  font-weight: 500;
}

.order-details .payment-box .payment-method p [type="radio"]:checked + label::before, .order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: var(--clinic-surface);
}

.order-details .payment-box .payment-method p [type="radio"]:checked + label::after, .order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label::after {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--clinic-primary);
  position: absolute;
  top: 6px;
  left: 3px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label::after {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.order-details .payment-box .payment-method p [type="radio"]:checked + label::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.order-details .payment-box .btn.order-btn {
  display: block;
  margin-top: 25px;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
          box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
  padding-right: 25px;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-area {
  position: relative;
  z-index: 1;
}

.contact-form form {
  text-align: center;
}

.contact-form form .form-control {
  background-color: var(--clinic-surface);
  border: none;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
          box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
  height: 57px;
}

.contact-form form .form-group {
  text-align: left;
}

.contact-form form .row {
  margin-left: -7px;
  margin-right: -7px;
}

.contact-form form .row .col-lg-12, .contact-form form .row .col-lg-6 {
  padding-left: 7px;
  padding-right: 7px;
}

.contact-form form textarea.form-control {
  height: auto;
  padding-top: 15px;
}

.contact-form form .btn {
  font-size: 16px;
  margin-top: 10px;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5) !important;
          box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5) !important;
}

.contact-form form .btn.disabled {
  cursor: not-allowed !important;
}

.contact-form form .btn.disabled:hover::before, .contact-form form .btn.disabled:focus::before {
  opacity: 1;
  visibility: visible;
}

.contact-form form .btn.disabled:hover::after, .contact-form form .btn.disabled:focus::after {
  opacity: 0;
  visibility: hidden;
}

.contact-form form .help-block ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 5px;
  margin-bottom: 0;
}

.contact-form form .help-block ul li {
  color: red;
}

.contact-form form #msgSubmit {
  margin-bottom: 0;
  text-align: center !important;
}

.contact-form form #msgSubmit.text-danger, .contact-form form #msgSubmit.text-success {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 600;
}

.contact-info {
  padding-left: 25px;
}

.contact-info ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.contact-info ul li {
  position: relative;
  padding-left: 95px;
  color: var(--clinic-ink);
  font-family: "Vazir-FD", sans-serif;
  margin-bottom: 35px;
}

.contact-info ul li .icon {
  border: 1px dashed var(--clinic-primary);
  width: 75px;
  height: 75px;
  line-height: 75px;
  color: var(--clinic-surface);
  border-radius: 50%;
  font-size: 25px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.contact-info ul li .icon::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--clinic-primary);
  border-radius: 50%;
  margin: 6px;
  -webkit-box-shadow: 0 1px 3px 1px var(--clinic-primary);
          box-shadow: 0 1px 3px 1px var(--clinic-primary);
  z-index: -1;
}

.contact-info ul li span {
  display: block;
  margin-bottom: 8px;
  color: var(--clinic-ink);
  font-family: "Vazir-FD", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.contact-info ul li a {
  color: var(--clinic-ink);
  display: block;
}

.contact-info ul li a:hover {
  color: var(--clinic-primary);
}

.contact-info ul li:last-child {
  margin-bottom: 0;
}

.bg-map {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
  text-align: center;
  margin: 0 auto;
  opacity: .4;
}

/*================================================
404 Error Area CSS
=================================================*/
.error-area {
  height: 100vh;
}

.error-content {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}

.error-content h3 {
  font-size: 40px;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 15px;
}

.error-content p {
  max-width: 520px;
  margin: 0 auto 20px;
}

/*================================================
Subscribe Area CSS
=================================================*/
.subscribe-area {
  border-bottom: 1px solid #272a35;
  margin-bottom: 60px;
  padding-bottom: 60px;
}

.newsletter-content h2 {
  color: var(--clinic-surface);
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 600;
}

.newsletter-content p {
  color: #65758B;
  max-width: 400px;
  margin-top: 10px;
  margin-bottom: 0;
}

.newsletter-form {
  position: relative;
}

.newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  height: 70px;
  line-height: initial;
  border: none;
  background-color: var(--clinic-surface);
  border-radius: 70px;
  color: var(--clinic-ink);
  outline: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 165px;
  padding-left: 25px;
  font-family: "Vazir-FD", sans-serif;
  font-size: 17px;
}

.newsletter-form .input-newsletter::-webkit-input-placeholder {
  color: var(--clinic-ink);
}

.newsletter-form .input-newsletter:-ms-input-placeholder {
  color: var(--clinic-ink);
}

.newsletter-form .input-newsletter::-ms-input-placeholder {
  color: var(--clinic-ink);
}

.newsletter-form .input-newsletter::placeholder {
  color: var(--clinic-ink);
}

.newsletter-form button {
  position: absolute;
  right: 7.5px;
  top: 7.5px;
  border: none;
  line-height: initial;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 1px 50px 0 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: var(--clinic-primary);
  height: 55px;
  color: var(--clinic-surface);
  display: inline-block;
  font-size: 14px;
  font-family: "Vazir-FD", sans-serif;
  font-weight: 500;
}

.newsletter-form button i {
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  display: inline-block;
  height: 33px;
  width: 33px;
  line-height: 33px;
  color: var(--clinic-surface);
  border-radius: 50%;
  background-color: var(--clinic-heading);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.newsletter-form button:hover, .newsletter-form button:focus {
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  background: var(--clinic-ink) !important;
  color: var(--clinic-surface) !important;
}

.newsletter-form button:hover i, .newsletter-form button:focus i {
  background-color: var(--clinic-surface);
  color: var(--clinic-ink);
}

.newsletter-form #validator-newsletter {
  position: absolute;
  left: 15px;
  bottom: -35px;
  color: var(--clinic-surface);
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  background-color: var(--clinic-ink);
  padding-top: 80px;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget .logo a {
  display: inline-block;
}

.single-footer-widget .logo p {
  color: #65758B;
  margin-top: 15px;
  margin-bottom: 0;
}

.single-footer-widget .social {
  padding-left: 0;
  list-style-type: none;
  margin-top: 18px;
  margin-bottom: 0;
}

.single-footer-widget .social li {
  display: inline-block;
  margin-left: 2px;
  margin-right: 2px;
}

.single-footer-widget .social li a {
  display: block;
  color: var(--clinic-surface);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: #3a3c45;
  text-align: center;
  font-size: 14px;
}

.single-footer-widget .social li a:hover {
  color: var(--clinic-surface);
  background-color: var(--clinic-primary);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.single-footer-widget .social li:first-child {
  margin-left: 0;
}

.single-footer-widget .social li:last-child {
  margin-right: 0;
}

.single-footer-widget h3 {
  margin-bottom: 30px;
  color: var(--clinic-surface);
  font-size: 18px;
  font-weight: 700;
}

.single-footer-widget .departments-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .departments-list li {
  margin-bottom: 10px;
  color: #65758B;
  font-size: 14.5px;
  font-family: "Vazir-FD", sans-serif;
}

.single-footer-widget .departments-list li a {
  display: inline-block;
  color: #65758B;
}

.single-footer-widget .departments-list li a:hover {
  color: var(--clinic-primary);
}

.single-footer-widget .departments-list li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .links-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .links-list li {
  margin-bottom: 10px;
  color: #65758B;
  font-size: 14.5px;
  font-family: "Vazir-FD", sans-serif;
}

.single-footer-widget .links-list li a {
  display: inline-block;
  color: #65758B;
}

.single-footer-widget .links-list li a:hover {
  color: var(--clinic-primary);
}

.single-footer-widget .links-list li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .opening-hours {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .opening-hours li {
  color: #65758B;
  border-bottom: 1px solid #393c49;
  overflow: hidden;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-family: "Vazir-FD", sans-serif;
}

.single-footer-widget .opening-hours li span {
  float: right;
}

.single-footer-widget .opening-hours li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.copyright-area {
  text-align: center;
  border-top: 1px solid #272a35;
  margin-top: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.copyright-area p {
  line-height: initial;
  color: var(--clinic-surface);
  margin-bottom: 0;
}

.copyright-area p a {
  color: var(--clinic-surface);
  display: inline-block;
}

.copyright-area p a:hover {
  color: var(--clinic-primary);
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 50%;
  right: 15px;
  background: var(--clinic-surface);
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .9s;
  color: var(--clinic-primary);
  border-radius: 3px;
  font-size: 20px;
}

.go-top.active {
  top: 98%;
  -webkit-transform: translateY(-98%);
          transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}

.go-top:hover, .go-top:focus {
  color: var(--clinic-surface);
  background-color: var(--clinic-primary);
}

/*================================================
style for header button
=================================================*/
.others-options {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.auth-buttons-group {
  display: flex;
  align-items: center;
  background: var(--clinic-surface);
  border-radius: 50px;
  padding: 5px 6px;
  border: 1.5px solid rgba(var(--clinic-primary-rgb), 0.2);
  box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  position: relative;
  overflow: hidden;
}

.auth-buttons-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--clinic-primary-rgb), 0.03) 0%, rgba(15, 39, 66, 0.03) 100%);
  z-index: 0;
  pointer-events: none;
}

.auth-buttons-group:hover {
  border-color: var(--clinic-primary);
  box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
  transform: translateY(-1px);
}

.btn-login, .btn-register {
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.btn-login {
  background: transparent;
  color: var(--clinic-heading);
}

.btn-login i {
  color: var(--clinic-primary);
  transition: transform 0.3s ease;
}

.btn-login:hover {
  background: rgba(var(--clinic-primary-rgb), 0.08);
  color: var(--clinic-heading);
  transform: translateX(-2px);
}

.btn-login:hover i {
  transform: rotate(-15deg) scale(1.1);
  color: var(--clinic-primary-hover);
}

.btn-register {
  background: var(--clinic-primary);
  color: var(--clinic-surface);
  box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
  position: relative;
  overflow: hidden;
}

.btn-register::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 60%);
  z-index: -1;
}

.btn-register::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-register:hover {
  background: var(--clinic-heading);
  box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
  transform: translateY(-2px);
  color: var(--clinic-surface);
}

.btn-register:hover::after {
  width: 300px;
  height: 300px;
}

.btn-register i {
  transition: transform .18s ease;
}

.btn-register:hover i {
  transform: scale(1.15) rotate(10deg);
}

.auth-divider {
  width: 1.5px;
  height: 22px;
  background: linear-gradient(to bottom, transparent, var(--clinic-primary), transparent);
  margin: 0 8px;
  opacity: 0.5;
  border-radius: 1px;
}

.user-greeting-wrapper {
  display: flex;
  align-items: center;
  background: var(--clinic-surface);
  border-radius: 50px;
  padding: 5px 10px 5px 16px;
  border: 1px solid var(--clinic-border-strong);
  box-shadow: var(--clinic-shadow);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.user-greeting-wrapper:hover {
  border-color: var(--clinic-primary);
  box-shadow: var(--clinic-shadow-hover);
}

.user-greeting {
  font-weight: 600;
  color: var(--clinic-heading);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 10px;
  white-space: nowrap;
}

.user-greeting i {
  font-size: 22px;
  color: var(--clinic-primary);
  transition: color .18s ease;
}

.logout-form {
  margin: 0;
  line-height: 0;
}

.btn-logout {
  background: var(--clinic-heading);
  color: var(--clinic-surface);
  border: none;
  border-radius: 50px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4px;
  transition: background-color .18s ease, box-shadow .18s ease, color .18s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: var(--clinic-shadow);
  position: relative;
  overflow: hidden;
}

.btn-logout::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left .18s ease;
}

.btn-logout:hover {
  background: var(--clinic-ink);
  box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
  transform: translateY(-2px);
  color: var(--clinic-surface);
}

.btn-logout:hover::before {
  left: 100%;
}

.btn-logout i {
  transition: transform 0.3s ease;
}

.btn-logout:hover i {
  transform: translateX(3px) rotate(-10deg);
}

@media (max-width: 991px) {
  .others-options {
      margin-right: 0;
      margin-top: 8px;
      width: 100%;
      justify-content: center;
  }

  .auth-buttons-group {
      width: 100%;
      max-width: 320px;
      justify-content: center;
      flex-wrap: wrap;
      gap: 4px;
      padding: 8px 10px;
      border-radius: 16px;
  }

  .auth-divider {
      display: none;
  }

  .btn-login, .btn-register {
      flex: 1 1 auto;
      justify-content: center;
      text-align: center;
      padding: 12px 16px;
      border-radius: 12px;
      font-size: 13px;
  }

  .btn-login {
      background: rgba(var(--clinic-primary-rgb), 0.08);
      border: 1px solid rgba(var(--clinic-primary-rgb), 0.2);
  }

  .btn-register {
      background: var(--clinic-primary);
  }

  .user-greeting-wrapper {
      width: 100%;
      max-width: 320px;
      flex-direction: column;
      background: transparent;
      border-radius: 12px;
      padding: 8px 10px;
      border: 1px solid rgba(var(--clinic-primary-rgb), 0.2);
      box-shadow: none;
      gap: 10px;
      align-items: center;
      background: var(--clinic-surface);
  }

  .user-greeting {
      margin-left: 0;
      font-size: 13px;
  }

  .btn-logout {
      width: 100%;
      justify-content: center;
      border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .auth-buttons-group {
      flex-direction: column;
      gap: 8px;
      padding: 8px;
      border-radius: 12px;
  }

  .btn-login, .btn-register {
      width: 100%;
      border-radius: 10px;
      padding: 11px 15px;
  }
}

/* ==========================
   Comments Section
========================== */
.comments-section {
  max-width: 900px;
  margin: 60px auto;
  background: var(--clinic-surface);
  border: 1px solid var(--clinic-border);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
}

.comment-card,
.comment-form {
  text-align: right;
}

.comments-title {
  color: var(--clinic-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.comments-title::after {
  content: '';
  width: 70px;
  height: 4px;
  background: var(--clinic-primary);
  display: block;
  margin: 10px auto 0;
  border-radius: 10px;
}

/* ==========================
 Comment Card
========================== */
.comment-card {
  background: var(--clinic-surface);
  border: 1px solid var(--clinic-border);
  border-right: 4px solid var(--clinic-primary);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.comment-card:hover {
  box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
  transform: translateY(-2px);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.comment-name {
  color: var(--clinic-heading);
  font-size: 17px;
  font-weight: 700;
}

.comment-date {
  color: #65758B;
  font-size: 13px;
}

.comment-message {
  color: var(--clinic-ink);
  line-height: 1.9;
  font-size: 15px;
}

/* ==========================
 Comment Form
========================== */
.comment-form {
  background: var(--clinic-surface);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid var(--clinic-border);
  margin-top: 40px;
}

.comment-form h3 {
  color: var(--clinic-heading);
  margin-bottom: 25px;
  font-weight: 700;
}

.comment-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--clinic-heading);
  font-weight: 600;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--clinic-border);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 14px;
  transition: 0.3s;
  margin-bottom: 18px;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--clinic-primary);
  box-shadow: 0 0 0 3px rgba(var(--clinic-primary-rgb), 0.12);
}

.comment-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* ==========================
 Button
========================== */
.comment-btn {
  background: var(--clinic-primary);
  color: var(--clinic-surface);
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.comment-btn:hover {
  background: var(--clinic-heading);
}

/* ==========================
 Empty Comments
========================== */
.no-comment {
  background: var(--clinic-surface);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #65758B;
}

/* ==========================
   Week Calendar
========================== */
.week-calendar {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 20px;
}

.calendar-day {
  background: var(--clinic-surface);
  border: 2px solid var(--clinic-border);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.calendar-day:hover {
  border-color: var(--clinic-primary);
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
}

.calendar-day h3 {
  color: var(--clinic-heading);
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
}

.calendar-day span {
  color: #65758B;
  font-size: 15px;
  font-weight: 500;
}

.calendar-day:not(.disabled) span {
  color: var(--clinic-primary);
}

.calendar-day.disabled {
  background: var(--clinic-border);
  border-color: var(--clinic-border);
  opacity: .65;
  cursor: not-allowed;
}

.calendar-day.disabled h3 {
  color: #65758B;
}

.calendar-day.disabled span {
  color: #65758B;
}

/* ==========================
   Slots
========================== */
.slots-container {
  max-width: 1100px;
  margin: 0 auto;
}

.slots-header {
  text-align: center;
  margin-bottom: 40px;
}

.slots-title {
  color: var(--clinic-heading);
  font-size: 32px;
  font-weight: 700;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
}

.slot-card {
  background: var(--clinic-surface);
  border: 1px solid var(--clinic-border);
  border-radius: var(--clinic-radius);
  padding: 25px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.slot-card:hover {
  border-color: var(--clinic-primary);
  transform: translateY(-4px);
  box-shadow: var(--clinic-shadow-hover);
}

.slot-time {
  font-size: 28px;
  font-weight: 700;
  color: var(--clinic-heading);
}

.slot-action {
  background: rgba(var(--clinic-primary-rgb), .1);
  color: var(--clinic-primary);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.empty-slots {
  grid-column: 1 / -1;
  background: var(--clinic-surface);
  border: 1px solid var(--clinic-border);
  border-radius: var(--clinic-radius);
  padding: 40px;
  text-align: center;
  color: #65758B;
  font-size: 16px;
}

/* ==========================
   Appointment Modern
========================== */
.appointment-page {
  padding: 96px 0;
  direction: rtl;
}

.appointment-hero {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.appointment-hero span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--clinic-primary);
  background: var(--clinic-surface);
  font-weight: 800;
}

.appointment-hero h1 {
  color: var(--clinic-heading);
  font-size: 42px;
  line-height: 1.45;
  font-weight: 900;
  margin-bottom: 14px;
}

.appointment-hero p {
  color: #65758B;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 0;
}

.appointment-grid,
.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.appointment-date-card,
.slot-card-modern,
.booking-summary,
.booking-form-card,
.my-appointment-card,
.appointment-empty {
  border: 1px solid var(--clinic-border);
  border-radius: var(--clinic-radius);
  background: var(--clinic-surface);
  box-shadow: var(--clinic-shadow);
}

.appointment-date-card,
.slot-card-modern {
  display: flex;
  flex-direction: column;
  min-height: 170px;
  padding: 24px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.appointment-date-card:hover,
.slot-card-modern:hover {
  transform: translateY(-6px);
  border-color: var(--clinic-border-strong);
  box-shadow: var(--clinic-shadow-hover);
}

.appointment-date-card strong,
.slot-time {
  color: var(--clinic-heading);
  font-size: 28px;
  font-weight: 900;
  margin: 10px 0;
}

.date-weekday,
.slot-service,
.appointment-date {
  color: #65758B;
  font-weight: 700;
}

.date-status,
.slot-status,
.appointment-status {
  width: fit-content;
  margin-top: auto;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.date-status.free,
.slot-status.free {
  color: var(--clinic-heading);
  background: var(--clinic-surface);
}

.date-status.full,
.slot-status.full {
  color: var(--clinic-ink);
  background: var(--clinic-border);
}

.slot-status.inactive {
  color: #65758B;
  background: var(--clinic-border);
}

.appointment-date-card.disabled,
.slot-card-modern.disabled {
  opacity: .62;
  cursor: not-allowed;
  box-shadow: none;
}

.booking-shell {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.booking-summary,
.booking-form-card {
  padding: 30px;
}

.booking-summary h3 {
  color: var(--clinic-heading);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
}

.booking-summary ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.booking-summary li {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  color: var(--clinic-ink);
  border-bottom: 1px solid var(--clinic-border);
}

.booking-summary li:last-child {
  border-bottom: 0;
}

.booking-summary i {
  color: var(--clinic-primary);
  margin-top: 5px;
}

.booking-form-card label {
  color: var(--clinic-heading);
  font-weight: 900;
  margin-bottom: 10px;
}

.booking-form-card .form-control {
  height: auto;
  min-height: 52px;
  border-radius: 16px;
  border-color: var(--clinic-border);
  color: var(--clinic-ink);
}

.booking-form-card textarea.form-control {
  min-height: 130px;
}

.appointment-empty {
  grid-column: 1 / -1;
  padding: 42px;
  text-align: center;
}

.appointment-empty i {
  color: var(--clinic-primary);
  font-size: 38px;
  margin-bottom: 16px;
}

.appointment-empty h3 {
  color: var(--clinic-heading);
  font-weight: 900;
}

.appointment-empty p {
  color: #65758B;
}

.appointment-back {
  margin-top: 26px;
  text-align: center;
}

.appointment-back a {
  color: var(--clinic-primary);
  font-weight: 900;
}

.my-appointments-list {
  display: grid;
  gap: 16px;
}

.my-appointment-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
}

.my-appointment-card h3 {
  color: var(--clinic-heading);
  font-weight: 900;
  margin: 8px 0 4px;
}

.my-appointment-card p {
  color: #65758B;
  margin-bottom: 0;
}

.appointment-status {
  color: var(--clinic-heading);
  background: var(--clinic-surface);
  white-space: nowrap;
}


@media (max-width: 991px) {
  .appointment-grid,
  .slot-grid,
  .booking-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .week-calendar {
    grid-template-columns: repeat(2,1fr);
  }

  .calendar-day {
    min-height: 130px;
    padding: 20px 15px;
  }

  .calendar-day h3 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .appointment-page {
    padding: 68px 0;
  }

  .appointment-hero h1 {
    font-size: 31px;
  }

  .appointment-grid,
  .slot-grid,
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .my-appointment-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .week-calendar {
    grid-template-columns: 1fr;
  }
}
/*================================================
Header Area CSS
=================================================*/
.top-header {
  background-color: #F8FAFC;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.header-contact-info li {
  display: inline-block;
  margin-right: 20px;
  color: #FFF;
  font-family: "Vazir-FD", sans-serif;
  font-size: 14px;
}

.header-contact-info li i {
  color: #00A6A6;
  margin-right: 4px;
  width: 28px;
  height: 28px;
  display: inline-block;
  line-height: 28px;
  border-radius: 50%;
  background-color: #E0F2FE;
  text-align: center;
  font-size: 13px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-contact-info li:last-child {
  margin-right: 0;
}

.header-contact-info li:hover i {
  background-color: #00A6A6;
  color: #F8FAFC;
}

.header-right-content {
  text-align: right;
}

.header-right-content .top-header-social {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.header-right-content .top-header-social li {
  display: inline-block;
  margin-right: 4px;
}

.header-right-content .top-header-social li a {
  display: block;
  color: #00A6A6;
  width: 30px;
  height: 30px;
  line-height: 31px;
  border-radius: 50%;
  background-color: #E0F2FE;
  text-align: center;
  font-size: 14px;
}

.header-right-content .top-header-social li a:hover {
  color: #F8FAFC;
  background-color: #00A6A6;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.header-right-content .top-header-social li:last-child {
  margin-right: 0;
}

.header-right-content .lang-select {
  margin-left: 15px;
  display: inline-block;
  position: relative;
  z-index: 1003;
}

.header-right-content .lang-select .nice-select {
  color: #1E293B;
  border-radius: 30px;
  border: none;
  height: unset;
  line-height: initial;
  -webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.02);
          box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.02);
  background-color: #F8FAFC;
  padding: 8px 30px 8px 15px;
  font-family: "Vazir-FD", sans-serif;
  font-size: 16px;
  font-weight: 500;
  z-index: 1003;
}

.header-right-content .lang-select .nice-select.open {
  z-index: 2001;
}

.header-right-content .lang-select .nice-select .list {
  background-color: #F8FAFC;
  -webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
          box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  z-index: 1002;
}

.header-right-content .lang-select .nice-select .list .option {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  text-align: center;
  line-height: 33px;
  min-height: 33px;
  padding-left: 0;
  padding-right: 0;
}

.header-right-content .lang-select .nice-select .list .option:hover {
  background-color: #00A6A6 !important;
  color: #F8FAFC;
}

.header-right-content .lang-select .nice-select .list .option.selected {
  background-color: transparent;
}

.header-right-content .lang-select .nice-select:after {
  right: 15px;
  border-color: #1E293B;
  top: 58%;
}

:root {
  /* ط±ظ†ع¯â€Œظ‡ط§غŒ ط¯ط±ط®ظˆط§ط³طھغŒ */
  --blue-text: var(--clinic-primary-hover);
  --blue-bg: var(--clinic-surface);
  --green-text: #047857;
  --green-bg: #DCFCE7;
  --text-color: #7E8A9B;
  
  /* ط§ظپع©طھâ€Œظ‡ط§غŒ ظ†ط±ظ… */
  --soft-ui-shadow: var(--clinic-shadow);
  --transition-speed: 0.18s;
}

/* ظ†ع¯ظ‡ط¯ط§ط±ظ†ط¯ظ‡ ط´ظپط§ظپ ظ…ظ†ظˆ */
.pill-nav-wrapper {
  background: transparent;
  padding: 25px 0;
  position: relative;
  z-index: 999;
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

/* ط­ط§ظ„طھ ع†ط³ط¨ط§ظ† ط¨ط§ ط§ط³ع©ط±ظˆظ„ (Sticky) */
.pill-nav-wrapper.fixed-top-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 0;
  animation: slideDown .18s ease forwards;
}

.pill-nav-wrapper.fixed-top-active .pill-navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--clinic-shadow-hover);
  height: 64px;
}

/* ط¨ط¯ظ†ظ‡ ط§طµظ„غŒ ع©ظ¾ط³ظˆظ„ */
.pill-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  border-radius: 100px;
  padding: 6px 12px 6px 24px;
  box-shadow: var(--soft-ui-shadow);
  height: 76px;
  transition: all var(--transition-speed) ease;
  border: 1px solid var(--clinic-border);
}

/* ظ„ظˆع¯ظˆ */
.pill-logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.pill-logo img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-speed) ease;
}
.pill-nav-wrapper.fixed-top-active .pill-logo img {
  max-height: 36px;
}

/* ظ„غŒظ†ع©â€Œظ‡ط§غŒ ظ…ظ†ظˆ */
.pill-menu {
  height: 100%;
  display: flex;
  align-items: center;
}
.pill-nav-links {
  display: flex;
  align-items: center;
  gap: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pill-nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  height: 44px;
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

/* ط­ط§ظ„طھ Hover ظˆ Active ظ…ظ†ظˆ */
.pill-nav-links a:hover {
  color: var(--blue-text);
  background: rgba(232, 247, 254, 0.5);
}
.pill-nav-links a.active {
  background: var(--blue-bg);
  color: var(--blue-text);
  font-weight: 600;
  box-shadow: inset 0 2px 5px rgba(8, 125, 184, 0.05), 0 2px 10px rgba(232, 247, 254, 0.4);
}

/* ط¨ط®ط´ ط¯ع©ظ…ظ‡â€Œظ‡ط§غŒ ط³ظ…طھ ع†ظ¾ (طھط±ط§ط² ط´ط¯ظ‡) */
.pill-actions {
  display: flex;
  align-items: center;
  height: 100%;
}
.pill-auth-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pill-user-box {
  display: flex;
  align-items: center;
  background: #F8F9FA;
  border-radius: 50px;
  padding: 4px 4px 4px 16px;
  border: 1px solid var(--clinic-border);
  gap: 12px;
}
.pill-username {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-text);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

/* ط§ط³طھط§غŒظ„ ظ…ط´طھط±ع© ط¯ع©ظ…ظ‡â€Œظ‡ط§ */
.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  height: 40px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  border: none;
  white-space: nowrap;
  cursor: pointer;
}

/* ظˆط±ظˆط¯ */
.btn-login { background: transparent; color: var(--blue-text); }
.btn-login:hover { background: var(--blue-bg); }

/* ط«ط¨طھâ€Œظ†ط§ظ… */
.btn-register { 
  background: var(--green-bg); 
  color: var(--green-text); 
  box-shadow: 0 4px 10px rgba(4, 120, 87, 0.1);
}
.btn-register:hover { 
  background: #c2f5d3; 
  transform: translateY(-2px); 
  box-shadow: 0 6px 15px rgba(4, 120, 87, 0.2);
}

/* ط®ط±ظˆط¬ */
.btn-logout { 
  background: #FEE2E2; 
  color: #EF4444; 
  height: 36px;
  padding: 0 16px;
}
.btn-logout:hover { background: #EF4444; color: #FFFFFF; }

/* ط¯ع©ظ…ظ‡ ظ…ظˆط¨ط§غŒظ„ */
.mobile-menu-btn {
  background: var(--blue-bg);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--blue-text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) ease;
}

/* ظ…ظ†ظˆغŒ ع©ط´ظˆغŒغŒ ظ…ظˆط¨ط§غŒظ„ */
.mobile-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 15px;
  right: 15px;
  background: #FFFFFF;
  border: 1px solid var(--clinic-border);
  border-radius: var(--clinic-radius);
  padding: 20px;
  box-shadow: var(--clinic-shadow-hover);
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-nav-links { list-style: none; padding: 0; margin: 0; }
.mobile-nav-links a {
  display: block;
  padding: 12px 16px;
  color: var(--text-color);
  text-decoration: none;
  border-radius: 12px;
  margin-bottom: 5px;
  font-weight: 500;
  text-align: right;
}
.mobile-nav-links a.active, .mobile-nav-links a:hover {
  background: var(--blue-bg);
  color: var(--blue-text);
}
.mobile-auth-wrapper {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--clinic-border);
}
.top-header {
  background-color: #ffffff;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  z-index: 1001;
}

.header-area.lang-select-open .top-header {
  z-index: 2000;
}

.header-area.lang-select-open .pill-nav-wrapper {
  z-index: 1;
}
/* ط§ظ†غŒظ…غŒط´ظ† ط§ط³ع©ط±ظˆظ„ */
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* ==================== Contact Page Styles ==================== */
.contact-page-wrapper {
    padding: 90px 0 50px;
    direction: rtl;
    text-align: right;
}

.contact-hero {
    text-align: center;
    margin-bottom: 60px;
}

.contact-hero .badge {
    display: inline-flex;
    padding: 8px 18px;
    background: var(--clinic-surface);
    color: var(--clinic-primary);
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-hero h1 {
    color: var(--clinic-heading);
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 14px;
}

.contact-hero p {
    color: #65758B;
    font-size: 16px;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ==================== Contact Grid ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 15px;
}

/* ==================== Info Card ==================== */
.contact-info-card {
    background: #fff;
    border: 1px solid var(--clinic-border);
    border-radius: var(--clinic-radius);
    padding: 35px 28px;
    box-shadow: var(--clinic-shadow);
    height: fit-content;
    position: sticky;
    top: 30px;
}

.contact-info-card h3 {
    color: var(--clinic-heading);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 28px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--clinic-border);
    position: relative;
    text-align: right;
}

.contact-info-card h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 60px;
    height: 2px;
    background: var(--clinic-primary);
    border-radius: 2px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 14px;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
    border: 1px solid transparent;
    align-items: flex-start;
    text-align: right;
}

.info-item:hover {
    background: var(--clinic-surface);
    border-color: var(--clinic-border);
    transform: translateX(-4px);
}

.info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--clinic-surface);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clinic-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.info-text {
    flex: 1;
    text-align: right;
}

.info-text h4 {
    color: var(--clinic-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-text span, .info-text a {
    color: #65758B;
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
    display: block;
}

.info-text a:hover {
    color: var(--clinic-primary);
}

/* Social - Fixed Centered Icons */
.social-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    justify-content: flex-start;
}

.social-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    background: var(--clinic-surface);
    color: var(--clinic-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.social-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    background: var(--clinic-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--clinic-primary-rgb), .25);
}

/* ==================== Form Card ==================== */
.contact-form-card {
    background: #fff;
    border: 1px solid var(--clinic-border);
    border-radius: var(--clinic-radius);
    padding: 40px;
    box-shadow: var(--clinic-shadow);
    text-align: right;
}

.contact-form-card h3 {
    color: var(--clinic-heading);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}

.contact-form-card .form-subtitle {
    color: #65758B;
    margin-bottom: 30px;
    font-size: 15px;
}

/* Alerts */
.custom-alert {
    padding: 16px 20px;
    border-radius: 14px;
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
}

.alert-success-custom {
    background: var(--clinic-surface);
    color: var(--clinic-heading);
    border: 1px solid var(--clinic-primary);
}

.alert-error-custom {
    background: #FEE2E2;
    color: #B91C1C;
    border: 1px solid #FECACA;
}

/* Form Styles */
.form-group-modern {
    margin-bottom: 20px;
    text-align: right;
}

.form-group-modern label {
    display: block;
    color: var(--clinic-heading);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-input-modern {
    width: 100%;
    min-height: 52px;
    padding: 12px 18px;
    border: 1px solid var(--clinic-border);
    border-radius: var(--clinic-radius-sm);
    font-size: 14px;
    color: var(--clinic-ink);
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
    font-family: inherit;
    text-align: right;
}

.form-input-modern:focus {
    outline: none;
    border-color: var(--clinic-primary);
    box-shadow: var(--clinic-focus-ring);
    background: #fff;
}

.form-input-modern::placeholder {
    color: #65758B;
}

textarea.form-input-modern {
    resize: vertical;
    min-height: 140px;
}

.error-text {
    color: #B91C1C;
    font-size: 12px;
    margin-top: 6px;
    display: block;
}

/* Submit Button */
.btn-submit-modern {
    width: 100%;
    min-height: 54px;
    background: linear-gradient(135deg, var(--clinic-primary), var(--clinic-primary-hover));
    color: #fff;
    border: none;
    border-radius: var(--clinic-radius-sm);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(var(--clinic-primary-rgb), .10);
}

.btn-submit-modern:hover {
    background: var(--clinic-primary-dark);
    box-shadow: var(--clinic-shadow-hover);
    transform: translateY(-2px);
}

/* ==================== Map Container ==================== */
.map-wrapper {
    max-width: 1200px;
    margin: 0 auto 70px;
    padding: 0 15px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--clinic-border);
    box-shadow: 0 22px 55px rgba(15, 39, 66, .10);
    background: #fff;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

/* ==================== Responsive ==================== */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        position: static;
    }
    
    .contact-hero h1 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .contact-page-wrapper {
        padding: 60px 0 30px;
    }
    
    .contact-form-card {
        padding: 24px 18px;
    }
    
    .contact-info-card {
        padding: 24px 18px;
    }
    
    .map-container iframe {
        height: 280px;
    }
}


/*# sourceMappingURL=style.css.map */

:root {
  --blue-text: var(--clinic-primary-hover);
  --blue-bg: var(--clinic-surface);
  --green-text: #047857;
  --green-bg: #DCFCE7;
  /* طھط؛غŒغŒط± ط±ظ†ع¯ ظ…طھظˆظ† ط¨ظ‡ ط·ظˆط³غŒ طھغŒط±ظ‡ ط¨ط³غŒط§ط± ظ¾ط±ط±ظ†ع¯ ط¬ظ‡طھ ط®ظˆط§ظ†ط§غŒغŒ ط­ط¯ط§ع©ط«ط±غŒ */
  --text-dark-solid: #374151; 
  --heading-dark-solid: #111827;
  /* طھظ‚ظˆغŒطھ ط³ط§غŒظ‡ ط³ط§ظپطھ غŒظˆط¢غŒ ط¨ط±ط§غŒ طھظپع©غŒع© ط§ظ„ظ…ط§ظ†â€Œظ‡ط§غŒ ط³ظپغŒط¯ ط±ظˆغŒ ط¨ع©â€Œع¯ط±ط§ظ†ط¯ ط³ظپغŒط¯ */
  --soft-ui-shadow: var(--clinic-shadow);
  --transition-speed: 0.18s;
}

/* ط¨ط¯ظ†ظ‡ ط§طµظ„غŒ ظپظˆطھط± ع©ط§ظ…ظ„ط§ظ‹ ط±ط§ط³طھ ع†غŒظ† */
.clinic-footer {
  background: transparent;
  padding: 20px 0 30px 0;
  position: relative;
  direction: rtl;
  text-align: right;
}

/* غ±. ط®ط· ط¬ط¯ط§ع©ظ†ظ†ط¯ظ‡ ط®ظ„ط§ظ‚ط§ظ†ظ‡ ظˆ ط´غŒع© ط¨ط§ظ„ط§غŒ ظپظˆطھط± */
.footer-creative-separator {
  position: relative;
  width: 100%;
  height: 1px;
  /* ط®ط·غŒ ع©ظ‡ ط§ط² ط·ط±ظپغŒظ† ظ…ط­ظˆ ظ…غŒâ€Œط´ظˆط¯ */
  background: linear-gradient(to left, transparent, var(--clinic-border) 20%, var(--clinic-border) 80%, transparent);
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.separator-accent-pill {
  width: 30px;
  height: 6px;
  background: var(--blue-text);
  border-radius: 50px;
  position: absolute;
  box-shadow: 0 2px 6px rgba(8, 125, 184, 0.3);
}

/* غ². ط¨ط§ع©ط³ ع©ظ¾ط³ظˆظ„غŒ ط¨ط²ط±ع¯ ط¯ط¹ظˆطھ ط¨ظ‡ ط§ظ‚ط¯ط§ظ… (CTA) */
.footer-cta-capsule {
  background: #FFFFFF;
  border-radius: var(--clinic-radius);
  padding: 35px 45px;
  box-shadow: var(--soft-ui-shadow);
  border: 1px solid var(--clinic-border);
  margin-bottom: 60px;
  text-align: right;
}
.footer-cta-capsule h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-dark-solid);
  margin-bottom: 12px;
  text-align: right;
}
.footer-cta-capsule p {
  font-size: 15px;
  color: var(--text-dark-solid);
  line-height: 1.7;
  margin: 0;
  text-align: right;
}

/* ط¯ع©ظ…ظ‡ ع©ظ¾ط³ظˆظ„غŒ ط³ط¨ط² */
.footer-btn.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-bg);
  color: var(--green-text);
  padding: 0 32px;
  height: 52px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease, transform var(--transition-speed) ease;
  box-shadow: 0 2px 8px rgba(var(--clinic-primary-rgb), .10);
  border: none;
  white-space: nowrap;
}
.footer-btn.btn-cta:hover {
  background: #cef5da;
  transform: translateY(-2px);
  box-shadow: var(--clinic-shadow-hover);
}

/* غ³. ط¨ط®ط´ ظˆغŒط¬طھâ€Œظ‡ط§ ظˆ ط¹ظ†ط§ظˆغŒظ† ع©ط§ظ…ظ„ط§ظ‹ ط±ط§ط³طھâ€Œع†غŒظ† ظˆ ظ¾ط±ط±ظ†ع¯ */
.main-footer-content {
  margin-bottom: 40px;
}
.footer-widget {
  text-align: right;
}
.footer-widget h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-dark-solid);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  text-align: right;
}
.footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 3px;
  background: var(--blue-text);
  border-radius: 10px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo {
  max-height: 46px;
  width: auto;
}
.footer-about-text {
  font-size: 14.5px;
  color: var(--text-dark-solid);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: right;
}

/* ط¯ع©ظ…ظ‡â€Œظ‡ط§غŒ ط´ط¨ع©ظ‡â€Œظ‡ط§غŒ ط§ط¬طھظ…ط§ط¹غŒ ط¨ط§ ط³ط§غŒظ‡ ط§ط®طھطµط§طµغŒ ط¬ظ‡طھ طھظپع©غŒع© ط±ظˆغŒ ط±ظ†ع¯ ط³ظپغŒط¯ */
.footer-social-links {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}
.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--text-dark-solid);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--clinic-border);
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease, box-shadow var(--transition-speed) ease, transform var(--transition-speed) ease;
  text-decoration: none;
}
.footer-social-links a:hover {
  background: var(--blue-bg);
  color: var(--blue-text);
  transform: translateY(-2px);
  box-shadow: var(--clinic-shadow-hover);
}

/* ظ„غŒط³طھ ظ„غŒظ†ع©â€Œظ‡ط§ */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-list li {
  margin-bottom: 12px;
  text-align: right;
}
.footer-links-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark-solid);
  font-size: 14.5px;
  text-decoration: none;
  transition: color var(--transition-speed) ease, padding-right var(--transition-speed) ease;
}
.footer-links-list a i {
  font-size: 10px;
  color: var(--blue-text);
  opacity: 0.7;
  transition: all var(--transition-speed) ease;
}
.footer-links-list a:hover {
  color: var(--blue-text);
  padding-right: 6px;
}

/* غ´. ع©ظ¾ط³ظˆظ„â€Œظ‡ط§غŒ ع©ظˆع†ع© طھظ…ط§ط³ ط¨ط§ ط³ط§غŒظ‡ ظ…ط¬ط²ط§ ظˆ ظ„ط¨ظ‡â€Œظ‡ط§غŒ ع¯ط±ط¯ ط¬ظ‡طھ ظˆط¶ظˆط­ ع©ط§ظ…ظ„ */
.footer-contact-capsules {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-pill-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  padding: 12px 18px;
  border-radius: var(--clinic-radius);
  box-shadow: var(--clinic-shadow);
  border: 1px solid var(--clinic-border);
  font-size: 14px;
  color: var(--text-dark-solid);
  font-weight: 500;
}
.contact-pill-item i {
  color: var(--blue-text);
  font-size: 16px;
}
.contact-pill-item a {
  color: var(--text-dark-solid);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}
.contact-pill-item a:hover {
  color: var(--blue-text);
}

/* ط¨ط®ط´ ع©ظ¾غŒ ط±ط§غŒطھ */
.footer-bottom-bar {
  border-top: 1px solid var(--clinic-border);
  padding-top: 25px;
  margin-top: 20px;
}
.footer-bottom-bar p {
  font-size: 13.5px;
  color: var(--text-dark-solid);
  margin: 0;
}

/* ط¯ع©ظ…ظ‡ ط¨ط§ط²ع¯ط´طھ ط¨ظ‡ ط¨ط§ظ„ط§ */
.go-top {
  position: fixed;
  top: auto;
  bottom: 30px;
  left: 30px;
  background: var(--blue-bg);
  color: var(--blue-text);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--clinic-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease, box-shadow var(--transition-speed) ease, transform var(--transition-speed) ease, opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
  z-index: 1000;
}
.go-top.show,
.go-top.active {
  top: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.go-top:hover {
  background: var(--blue-text);
  color: #FFFFFF;
  transform: translateY(-4px);
}

/* طھظ†ط¸غŒظ…ط§طھ ط­ط§ظ„طھ ظ…ظˆط¨ط§غŒظ„ ظˆ طھط¨ظ„طھ */
@media (max-width: 991.98px) {
  .footer-cta-capsule {
      padding: 30px 20px;
      text-align: center;
  }
  .footer-cta-capsule h2, .footer-cta-capsule p {
      text-align: center;
  }
  .footer-widget {
      text-align: right;
      margin-top: 20px;
  }
  .footer-social-links {
      justify-content: flex-start;
  }
}


/* =========================================
  ط§ط³طھط§غŒظ„ ظ‡ط§غŒ طµظپط­ظ‡ ط®ط¯ظ…ط§طھ
   ========================================= */
   .modern-page-header-capsule {
    background: #FFFFFF;
    border-radius: var(--clinic-radius);
    padding: 40px 50px;
    box-shadow: var(--soft-ui-shadow);
    border: 1px solid var(--clinic-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modern-page-header-capsule::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--blue-bg) 0%, transparent 70%);
    opacity: 0.6;
    z-index: 0;
}

.modern-page-header-capsule h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--heading-dark-solid, #111827);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.modern-breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.modern-breadcrumb li {
    font-size: 14.5px;
    font-weight: 500;
}

.modern-breadcrumb li a {
    color: var(--text-dark-solid, #374151);
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-breadcrumb li a:hover {
    color: var(--blue-text, var(--clinic-primary-hover));
}

.modern-breadcrumb li i {
    font-size: 10px;
    color: #9CA3AF;
}

.modern-breadcrumb li.active {
    color: var(--blue-text, var(--clinic-primary-hover));
}

.modern-section-title {
    margin-bottom: 40px;
}
.modern-section-title .sub-title {
    display: inline-block;
    background: var(--blue-bg, var(--clinic-surface));
    color: var(--blue-text, var(--clinic-primary-hover));
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}
.modern-section-title h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--heading-dark-solid, #111827);
}


.modern-service-card {
  background: #FFFFFF;
    border-radius: var(--clinic-radius);
    padding: 30px 25px;
    box-shadow: var(--clinic-shadow);
    border: 1px solid var(--clinic-border);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--clinic-shadow-hover);
    border-color: var(--clinic-border-strong);
}

.service-icon-wrapper {
    width: 65px;
    height: 65px;
    background: var(--blue-bg, var(--clinic-surface));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: background-color .18s ease;
}

.modern-service-card:hover .service-icon-wrapper {
    background: var(--blue-text, var(--clinic-primary-hover));
}

.service-icon-wrapper i {
    font-size: 32px;
    color: var(--blue-text, var(--clinic-primary-hover));
    transition: color .18s ease;
}

.modern-service-card:hover .service-icon-wrapper i {
    color: #FFFFFF;
}

.service-content {
    flex-grow: 1; 
}

.service-content h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-content h3 a {
    color: var(--heading-dark-solid, #111827);
    text-decoration: none;
    transition: color .18s ease;
}

.modern-service-card:hover .service-content h3 a {
    color: var(--blue-text, var(--clinic-primary-hover));
}

.service-content p {
    font-size: 14px;
    color: var(--text-dark-solid, #374151);
    line-height: 1.8;
    margin-bottom: 25px;
}


.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed var(--clinic-border);
    padding-top: 20px;
    margin-top: auto;
}

.price-pill {
    background: var(--green-bg, #DCFCE7);
    color: var(--green-text, #047857);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
}

.price-pill.empty-price {
    background: var(--clinic-surface);
    color: #6B7280;
}

.btn-read-more {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #F9FAFB;
    color: var(--text-dark-solid, #374151);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color .18s ease, color .18s ease;
}

.btn-read-more i {
    font-size: 14px;
    transform: rotate(45deg); 
    transition: transform .18s ease;
}

.modern-service-card:hover .btn-read-more {
    background: var(--blue-text, var(--clinic-primary-hover));
    color: #FFFFFF;
}

.modern-service-card:hover .btn-read-more i {
    transform: rotate(0deg); 
}

/* =========================================
   Spotlight / Featured Service Card
   ========================================= */

.spotlight-service-card {
    background: linear-gradient(135deg, #003d2f 0%, #0a7a5f 50%, #0f6b56 100%);
    border-radius: 20px;
    padding: 45px 50px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    animation: spotlight-glow 3s ease-in-out infinite alternate;
    box-shadow: 0 4px 20px rgba(0, 61, 47, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotlight-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 50px rgba(0, 61, 47, 0.45);
}

@keyframes spotlight-glow {
    0% {
        box-shadow: 0 4px 20px rgba(0, 61, 47, 0.3), inset 0 0 30px rgba(255, 255, 255, 0.03);
    }
    100% {
        box-shadow: 0 8px 40px rgba(0, 61, 47, 0.5), inset 0 0 60px rgba(255, 255, 255, 0.06);
    }
}

/* Decorative background circles */
.spotlight-service-card::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.spotlight-service-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: 20%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.spotlight-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.spotlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
    direction: rtl;
    text-align: right;
}

.spotlight-title {
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 14px;
    line-height: 1.4;
    text-align: right;
    direction: rtl;
}

.spotlight-title i {
    margin-left: 10px;
    font-size: 24px;
    opacity: 0.8;
}

.spotlight-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.9;
    margin-bottom: 24px;
    max-width: 600px;
    text-align: right;
    direction: rtl;
}

.spotlight-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    direction: rtl;
}

.spotlight-features .feature-pill {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.2s ease;
    direction: rtl;
}

.spotlight-features .feature-pill:hover {
    background: rgba(255, 255, 255, 0.24);
}

.spotlight-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: var(--clinic-primary);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    direction: rtl;
}

.spotlight-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--clinic-primary);
}

.spotlight-cta i {
    font-size: 13px;
    transition: transform 0.2s ease;
}

.spotlight-cta:hover i {
    transform: translateX(-4px);
}

/* Icon area */
.spotlight-icon-area {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.spotlight-icon-circle {
    width: 130px;
    height: 130px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-glow 2.5s ease-in-out infinite;
}

.spotlight-icon-circle i {
    font-size: 52px;
    color: #FFFFFF;
    animation: icon-breathe 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.08);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.05), 0 0 50px rgba(255, 255, 255, 0.12);
    }
}

@keyframes icon-breathe {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.08); opacity: 1; }
}

/* Responsive adjustments for spotlight card */
@media (max-width: 991px) {
    .spotlight-service-card {
        flex-direction: column-reverse;
        text-align: center;
        padding: 35px 30px;
    }

    .spotlight-desc {
        max-width: 100%;
        text-align: center;
    }

    .spotlight-features {
        justify-content: center;
    }

    .spotlight-title {
        font-size: 24px;
        text-align: center;
    }

    .spotlight-badge {
        text-align: center;
    }

    .spotlight-cta {
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .spotlight-service-card {
        padding: 28px 20px;
        gap: 25px;
    }

    .spotlight-icon-circle {
        width: 100px;
        height: 100px;
    }

    .spotlight-icon-circle i {
        font-size: 40px;
    }

    .spotlight-title {
        font-size: 21px;
    }

    .spotlight-desc {
        font-size: 14px;
    }

    .spotlight-features .feature-pill {
        font-size: 12px;
        padding: 5px 14px;
    }
}

/* =========================================
   Spotlight Detail Page
   ========================================= */

/* Hero Banner */
.spotlight-detail-hero {
    position: relative;
    background: linear-gradient(135deg, #003d2f 0%, #0a7a5f 50%, #0f6b56 100%);
    padding: 80px 0 60px;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.spotlight-detail-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04) 0%, transparent 50%);
    z-index: 0;
}

.spotlight-detail-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.spotlight-detail-hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 16px 0;
    line-height: 1.4;
    direction: rtl;
    text-align: center;
}

.spotlight-detail-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
    margin-bottom: 28px;
    direction: rtl;
    text-align: center;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-features .feature-pill {
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.18);
    direction: rtl;
}

/* Content blocks */
.detail-content-block {
    margin-bottom: 45px;
}

.detail-content-block h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--clinic-heading, #102a24);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--clinic-surface, #eef8f5);
    direction: rtl;
    text-align: right;
}

.detail-content-block h2 i {
    color: var(--clinic-primary, #003d2f);
    margin-right: 10px;
    font-size: 20px;
}

.detail-content-block p {
    font-size: 15px;
    color: #374151;
    line-height: 2;
    margin-bottom: 16px;
    text-align: justify;
    direction: rtl;
}

/* Process Steps */
.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 22px;
    width: 2px;
    height: calc(100% - 60px);
    background: var(--clinic-surface, #eef8f5);
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--clinic-primary, #003d2f);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--clinic-heading, #102a24);
    margin-bottom: 8px;
    direction: rtl;
    text-align: right;
}

.step-content p {
    font-size: 14px;
    color: #374151;
    line-height: 1.9;
    text-align: justify;
    direction: rtl;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-item {
    background: #FFFFFF;
    border: 1px solid var(--clinic-border, rgba(0,61,47,.35));
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--clinic-shadow-hover);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    background: var(--clinic-surface, #eef8f5);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: background 0.2s ease;
}

.benefit-icon i {
    font-size: 22px;
    color: var(--clinic-primary, #003d2f);
}

.benefit-item:hover .benefit-icon {
    background: var(--clinic-primary, #003d2f);
}

.benefit-item:hover .benefit-icon i {
    color: #FFFFFF;
}

.benefit-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--clinic-heading, #102a24);
    margin-bottom: 8px;
    direction: rtl;
    text-align: center;
}

.benefit-item p {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.8;
    margin: 0;
    text-align: center;
    direction: rtl;
}

/* Checklist */
.detail-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--clinic-surface, #eef8f5);
    font-size: 15px;
    color: #374151;
    direction: rtl;
}

.detail-checklist li:last-child {
    border-bottom: none;
}

.detail-checklist li i {
    color: var(--clinic-primary, #003d2f);
    font-size: 14px;
    flex-shrink: 0;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--clinic-surface, #eef8f5);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid var(--clinic-border, rgba(0,61,47,.35));
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--clinic-heading, #102a24);
    margin-bottom: 10px;
    text-align: right;
    direction: rtl;
}

.faq-item p {
    font-size: 14px;
    color: #374151;
    line-height: 1.9;
    margin: 0;
    text-align: justify;
    direction: rtl;
}

/* Sidebar */
.spotlight-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: #FFFFFF;
    border: 1px solid var(--clinic-border, rgba(0,61,47,.35));
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: var(--clinic-shadow);
}

.sidebar-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--clinic-heading, #102a24);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--clinic-surface, #eef8f5);
    text-align: right;
    direction: rtl;
}

.sidebar-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-info-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--clinic-surface, #eef8f5);
    direction: rtl;
}

.sidebar-info-list li:last-child {
    border-bottom: none;
}

.sidebar-info-list li i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--clinic-surface, #eef8f5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clinic-primary, #003d2f);
    font-size: 15px;
}

.sidebar-info-list li div {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 12px;
    color: #9CA3AF;
    font-weight: 500;
    direction: rtl;
    text-align: right;
}

.info-value {
    font-size: 14px;
    color: var(--clinic-heading, #102a24);
    font-weight: 600;
    direction: rtl;
    text-align: right;
}

.sidebar-cta-card {
    background: linear-gradient(135deg, #003d2f, #0a7a5f);
    color: #FFFFFF;
    border: none;
    text-align: center;
}

.sidebar-cta-card h3 {
    color: #FFFFFF;
    border-bottom-color: rgba(255,255,255,0.2);
}

.sidebar-cta-card p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    direction: rtl;
}

.btn-spotlight-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: var(--clinic-primary, #003d2f);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    direction: rtl;
}

.btn-spotlight-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: var(--clinic-primary, #003d2f);
}

.btn-spotlight-cta i {
    font-size: 13px;
}

.sidebar-guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-guide-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid var(--clinic-surface, #eef8f5);
    direction: rtl;
}

.sidebar-guide-list li:last-child {
    border-bottom: none;
}

.sidebar-guide-list li i {
    color: var(--clinic-primary, #003d2f);
    font-size: 13px;
}

/* Detail page responsive */
@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spotlight-detail-hero h1 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .spotlight-detail-hero {
        padding: 50px 0 40px;
    }

    .spotlight-detail-hero h1 {
        font-size: 24px;
    }

    .hero-features .feature-pill {
        font-size: 12px;
        padding: 5px 14px;
    }

    .detail-content-block h2 {
        font-size: 19px;
    }
}

/* =========================================
  Blog Cards
   ========================================= */

.modern-blog-card {
  background: #FFFFFF;
  border-radius: var(--clinic-radius);
  box-shadow: var(--clinic-shadow);
  border: 1px solid var(--clinic-border);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden; 
}

.modern-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--clinic-shadow-hover);
  border-color: var(--clinic-border-strong);
}

.blog-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .18s ease;
}

.modern-blog-card:hover .blog-image-wrapper img {
  transform: scale(1.08); 
}


.blog-date-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  color: var(--blue-text, var(--clinic-primary-hover));
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 1;
}

.blog-card-body {
  padding: 25px;
  flex-grow: 1; 
}

.blog-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
}

.blog-card-body h3 a {
  color: var(--heading-dark-solid, #111827);
  text-decoration: none;
  transition: color .18s ease;
}

.modern-blog-card:hover .blog-card-body h3 a {
  color: var(--blue-text, var(--clinic-primary-hover));
}

.blog-card-body p {
  font-size: 14.5px;
  color: var(--text-dark-solid, #374151);
  line-height: 1.8;
  margin-bottom: 0;
}

.blog-card-footer {
  padding: 15px 25px 20px 25px;
  border-top: 1px dashed var(--clinic-border);
  margin-top: auto;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark-solid, #374151);
  text-decoration: none;
  transition: color .18s ease;
}

.read-more-link i {
  font-size: 12px;
  color: var(--blue-text, var(--clinic-primary-hover));
  transition: transform .18s ease;
}

.read-more-link:hover {
  color: var(--blue-text, var(--clinic-primary-hover));
}

.modern-blog-card:hover .read-more-link i {
  transform: translateX(-5px); 
}

/* =========================================
  ظ¾ط§غŒط§ظ† ط§ط³طھط§غŒظ„ ظ‡ط§غŒ طµظپط­ظ‡ ط®ط¯ظ…ط§طھ
   ========================================= */
/* =========================================
  ط§ط³طھط§غŒظ„ ظ‡ط§غŒ طµظپط­ظ‡ ط¯ط±ط¨ط§ط±ظ‡ ظ…ط§
   ========================================= */
   .modern-about-card {
    background: #FFFFFF;
    border-radius: var(--clinic-radius);
    padding: 60px;
    box-shadow: var(--clinic-shadow);
    border: 1px solid var(--clinic-border);
}

.about-image-wrapper {
    overflow: hidden;
    border-radius: var(--clinic-radius);
}
.about-image-wrapper img {
    width: 100%;
    transition: transform .18s ease;
}
.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-content-wrapper {
    padding-right: 40px;
    text-align: right;
}
.about-content-wrapper .sub-title {
    display: inline-block;
    background: var(--blue-bg);
    color: var(--blue-text);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}
.about-content-wrapper h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
}
.about-content-wrapper p {
    font-size: 15px;
    color: var(--text-dark-solid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--heading-dark-solid);
}
.feature-item i {
    color: var(--green-text);
    font-size: 18px;
}

@media (max-width: 991.98px) {
    .modern-about-card {
        padding: 30px;
        border-radius: var(--clinic-radius);
    }
    .about-content-wrapper {
        padding-right: 0;
        margin-top: 30px;
    }
    .about-content-wrapper h2 {
        font-size: 26px;
    }
}
/* =========================================
  ظ¾ط§غŒط§ظ† ط§ط³طھط§غŒظ„ ظ‡ط§غŒ طµظپط­ظ‡ ط¯ط±ط¨ط§ط±ظ‡ ظ…ط§
   ========================================= */
 /* =========================================
   ط§ط³طھط§غŒظ„ ظ‡ط§غŒ طµظپط­ظ‡ ط¯ط±ط®ظˆط§ط³طھ ط§ط³ع©ط§ظ†
   ========================================= */
.modern-form-card {
  background: #FFFFFF;
  border-radius: var(--clinic-radius);
  padding: 50px;
  box-shadow: var(--clinic-shadow);
  border: 1px solid var(--clinic-border);
}

.form-label {
  text-align: right;
  display: block;
  margin-bottom: 8px;
}


.custom-modern-form input,
.custom-modern-form textarea,
.custom-modern-form select {
  width: 100%;
  padding: 15px 20px;
  border-radius: var(--clinic-radius-sm);
  border: 1px solid var(--clinic-border);
  background: #F9FAFB;
  font-size: 15px;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
  outline: none;
}

.custom-modern-form input:focus,
.custom-modern-form textarea:focus {
  border-color: var(--clinic-primary);
  background: #FFFFFF;
  box-shadow: var(--clinic-focus-ring);
}


.btn-submit-modern {
  background: var(--clinic-primary);
  color: #FFFFFF;
  border: none;
  padding: 18px;
  border-radius: var(--clinic-radius-sm);
  font-weight: 700;
  font-size: 16px;
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
  cursor: pointer;
}

.btn-submit-modern:hover {
  background: var(--clinic-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--clinic-shadow-hover);
}

@media (max-width: 768px) {
  .modern-form-card {
      padding: 25px;
  }
}


 /* =========================================
   ظ¾ط§غŒط§ظ† ط§ط³طھط§غŒظ„ ظ‡ط§غŒ طµظپط­ظ‡ ط¯ط±ط®ظˆط§ط³طھ ط§ط³ع©ط§ظ†
   ========================================= */


 /* =========================================
   ط§ط³طھط§غŒظ„ ظ‡ط§غŒ طµظپط­ظ‡ ظˆط±ظˆط¯ ظˆ ط«ط¨طھ ظ†ط§ظ…
   ========================================= */

.custom-modern-form input {
  width: 100%;
  padding: 15px 20px;
  border-radius: var(--clinic-radius-sm) !important;
  border: 1px solid var(--clinic-border) !important;
  background: #F9FAFB !important;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.custom-modern-form input:focus {
  border-color: var(--clinic-primary) !important;
  box-shadow: var(--clinic-focus-ring) !important;
}

.modern-form-card {
  background: #FFFFFF;
  border-radius: var(--clinic-radius);
  padding: 40px;
  box-shadow: var(--clinic-shadow);
  border: 1px solid var(--clinic-border);
}
 /* =========================================
ظ¾ط§غŒط§ظ† ط§ط³طھط§غŒظ„ ظ‡ط§ط³ طµظپط­ظ‡ ظˆط±ظˆط¯ ظˆ ط«ط¨طھ ظ†ط§ظ…
   ========================================= */

    /* =========================================
ط§ط³طھط§غŒظ„ ظ‡ط§غŒ طµظپط­ظ‡ ط¯ط§ط´ط¨ظˆط±ط¯
   ========================================= */
.modern-dashboard-card {
  background: #FFFFFF;
  border-radius: var(--clinic-radius);
  padding: 30px;
  box-shadow: var(--clinic-shadow);
  border: 1px solid var(--clinic-border);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  height: 100%;
}

.action-card {
  text-align: center;
}

.action-card i {
  font-size: 30px;
  color: var(--blue-text);
  margin-bottom: 15px;
}

.action-card h3 a {
  text-decoration: none;
  color: var(--heading-dark-solid);
  font-weight: 700;
}

.action-card:hover {
  transform: translateY(-3px);
  border-color: var(--clinic-border-strong);
  box-shadow: var(--clinic-shadow-hover);
}

.table-card {
  padding: 25px;
}

.table td {
  padding: 15px 10px;
  border-bottom: 1px solid var(--clinic-border);
  font-size: 14px;
}

.status-badge {
  background: var(--blue-bg);
  color: var(--blue-text);
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .modern-dashboard-card { padding: 20px; }
}
.mb-3{
  text-align: center;
}
    /* =========================================
ظ¾ط§غŒط§ظ† ط§ط³طھط§غŒظ„ ظ‡ط§غŒ طµظپط­ظ‡ ط¯ط§ط´ط¨ظˆط±ط¯
   ========================================= */
    /* =========================================
                     ط§ط³طھط§غŒظ„ ظ‡ط§غŒ طµظپط­ظ‡ ط¯ط±ط®ظˆط§ط³طھ ظ‡ط§غŒ ط§ط³ع©ط§ظ† ظ…ظ†
   ========================================= */
.table thead th {
  color: #6B7280;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--clinic-border-strong);
  padding-bottom: 15px;
}

.table td {
  padding: 20px 10px;
  border-bottom: 1px solid var(--clinic-border);
  font-weight: 500;
  color: var(--heading-dark-solid);
}

.table tbody tr {
  transition: background-color .18s ease;
}

.table tbody tr:hover {
  background-color: rgba(var(--clinic-primary-rgb), .03);
}

.status-badge {
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}

.status-success {
  background: var(--green-bg);
  color: var(--green-text);
}

.status-warning {
  background: #FEF3C7;
  color: #92400E;
}

.table-responsive {
  overflow-x: auto;
}
    /* =========================================
ظ¾ط§غŒط§ظ† ط§ط³طھط§غŒظ„ ظ‡ط§غŒ طµظپط­ظ‡ ط¯ط±ط®ظˆط§ط³طھ ظ‡ط§غŒ ط§ط³ع©ط§ظ† ظ…ظ†
   ========================================= */
    /* =========================================
ط§ط³طھط§غŒظ„ ظ‡ط§غŒ طµظپط­ظ‡ blog detail
   ========================================= */
.modern-article-card {
  background: #FFFFFF;
  border-radius: var(--clinic-radius);
  padding: 30px;
  box-shadow: var(--clinic-shadow);
  border: 1px solid var(--clinic-border);
}

.article-image-wrapper img {
  width: 100%;
  border-radius: var(--clinic-radius);
  margin-bottom: 30px;
}

.article-body {
  line-height: 2;
  font-size: 16px;
  color: #374151;
}

/* ط§ط³طھط§غŒظ„ ظ†ط¸ط±ط§طھ */
.comment-card {
  background: #F9FAFB;
  padding: 20px;
  border-radius: var(--clinic-radius-sm);
  margin-bottom: 15px;
  border: 1px solid var(--clinic-border);
}

/* ط³ط§غŒط¯ط¨ط§ط± ع©ظ¾ط³ظˆظ„غŒ */
.modern-sidebar-card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: var(--clinic-radius);
  border: 1px solid var(--clinic-border);
  box-shadow: var(--clinic-shadow);
  position: sticky;
  top: 20px;
}
.modern-sidebar-card a {
  text-decoration: none;
  color: var(--blue-text);
  font-weight: 600;
}

    /* =========================================
ط§ط³طھط§غŒظ„ ظ‡ط§غŒ طµظپط­ظ‡ blog detail ظ¾ط§غŒط§ظ†
   ========================================= */

/* =========================================
   Clinic Brand Theme
   ========================================= */
:root {
  --blue-text: var(--clinic-primary);
  --blue-bg: var(--clinic-surface);
  --text-color: var(--clinic-muted);
  --heading-dark-solid: var(--clinic-heading);
  --text-dark-solid: var(--clinic-ink);
  --soft-ui-shadow: var(--clinic-shadow);
}

a:hover,
.section-title span,
.footer-links-list a:hover,
.modern-sidebar-card a,
.action-card i,
.contact-pill-item i {
  color: var(--clinic-primary);
}

.top-header,
.go-top:hover,
.btn-primary,
.btn-submit-modern,
.admin-primary-btn,
.clinic-btn-primary,
.footer-btn.btn-cta,
.pill-nav-links a.active,
.mobile-nav-links a.active,
.btn-register,
.support-chat,
.service-item.selected .service-checkbox,
.cal-nav-btn:hover,
.timeslot-btn.selected,
.cal-day.selected {
  background: #003d2f !important;
  color: var(--clinic-white) !important;
}

.btn-primary,
.btn-submit-modern,
.admin-primary-btn,
.clinic-btn-primary,
.footer-btn.btn-cta,
.btn-register {
  box-shadow: 0 2px 8px rgba(var(--clinic-primary-rgb), .10);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-submit-modern:hover,
.admin-primary-btn:hover,
.clinic-btn-primary:hover,
.footer-btn.btn-cta:hover,
.btn-register:hover,
.support-chat:hover {
  background: var(--clinic-primary-dark) !important;
  color: var(--clinic-white) !important;
  box-shadow: var(--clinic-shadow-hover);
}

.btn-light,
.btn-login:hover,
.mobile-menu-btn,
.status-badge,
.blog-date-badge,
.contact-hero .badge,
.summary-icon,
.service-icon,
.confirm-icon,
.avatar-placeholder,
.row-action,
.mini-btn {
  background: var(--clinic-surface) !important;
  color: var(--clinic-primary) !important;
}

.form-control:focus,
.nice-select.open,
.nice-select:focus,
input:focus,
select:focus,
textarea:focus,
.custom-modern-form input:focus,
.custom-modern-form textarea:focus,
.form-input:focus,
.doctor-dropdown:focus,
.modern-dashboard-card:hover,
.service-item.selected,
.admin-filter-form input:focus,
.admin-filter-form select:focus,
.admin-form-box input:focus,
.admin-form-box select:focus,
.admin-form-box textarea:focus {
  border-color: var(--clinic-primary) !important;
  box-shadow: var(--clinic-focus-ring) !important;
}

.pill-navbar {
  border: 1px solid var(--clinic-border);
  box-shadow: var(--clinic-shadow);
}

.pill-logo a,
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--clinic-primary);
  border-radius: var(--clinic-radius-sm);
  padding: 8px 12px;
  box-shadow: 0 2px 8px rgba(var(--clinic-primary-rgb), .10);
}

.pill-logo img {
  max-height: 30px;
  display: block;
}

.pill-nav-wrapper.fixed-top-active .pill-logo img {
  max-height: 42px;
}

.footer-logo {
  max-height: 58px;
  display: block;
}

.pill-nav-links a:hover,
.mobile-nav-links a:hover,
.clinic-admin-sidebar a.active,
.clinic-admin-sidebar a:hover {
  background: var(--clinic-surface) !important;
  color: var(--clinic-primary) !important;
}

.pill-user-box,
.modern-dashboard-card,
.modern-form-card,
.footer-cta-capsule,
.footer-social-links a,
.contact-pill-item,
.admin-panel,
.admin-form-box,
.admin-stat,
.modern-sidebar-card,
.modern-service-card,
.modern-blog-card,
.modern-article-card,
.comment-card,
.contact-info-card,
.contact-form-card,
.dropdown-menu,
.modal-content,
.table,
.table-responsive {
  border-color: var(--clinic-border) !important;
}

.footer-widget h3::after,
.separator-accent-pill,
.section-heading::before {
  background: var(--clinic-primary) !important;
}

.admin-brand i {
  background: var(--clinic-primary) !important;
}

.admin-stat strong,
.admin-outline-btn,
.clinic-admin-sidebar a.active,
.clinic-admin-sidebar a:hover,
.row-action,
.mini-btn {
  color: var(--clinic-primary) !important;
}

.admin-outline-btn,
.mini-btn {
  border-color: var(--clinic-border) !important;
}

.modern-dashboard-card,
.modern-form-card,
.modern-service-card,
.modern-blog-card,
.modern-about-card,
.modern-article-card,
.modern-sidebar-card,
.contact-info-card,
.contact-form-card,
.comment-card,
.admin-panel,
.admin-form-box,
.admin-stat,
.dropdown-menu,
.modal-content {
  border-radius: var(--clinic-radius) !important;
  box-shadow: var(--clinic-shadow) !important;
}

.modern-dashboard-card:hover,
.modern-service-card:hover,
.modern-blog-card:hover,
.comment-card:hover,
.contact-info-card:hover,
.contact-form-card:hover,
.admin-stat:hover,
.admin-panel:hover {
  box-shadow: var(--clinic-shadow-hover) !important;
}

.btn,
.admin-primary-btn,
.admin-outline-btn,
.mini-btn,
.row-action,
.btn-submit-modern {
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.btn-primary:active,
.btn-submit-modern:active,
.admin-primary-btn:active,
.clinic-btn-primary:active {
  background: var(--clinic-primary-dark) !important;
  color: var(--clinic-white) !important;
  transform: translateY(0);
}

.pill-logo a, .footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #003d2f00;
  box-shadow: none;
  padding: 8px 12px;
}
