/* @import "../../css2-7";
@import "../../css2-24"; */
:root {
  --base-color: #bad534;
  --dark-gray: #404040;
}
body {
  font-size: 17px;
  line-height: 32px;
}
.placeholder-light-gray::-webkit-input-placeholder {
  color: var(--medium-gray) !important;
  text-overflow: ellipsis;
  opacity: 0.6;
}
.placeholder-light-gray::-moz-placeholder {
  color: var(--medium-gray) !important;
  text-overflow: ellipsis;
  opacity: 0.6;
}
.placeholder-light-gray:-ms-input-placeholder {
  color: var(--medium-gray) !important;
  text-overflow: ellipsis;
  opacity: 0.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  word-spacing: -2px;
}
h1 {
  line-height: 4.375rem;
}
h2 {
  line-height: 3.438rem;
}
h3 {
  line-height: 2.813rem;
}
h4 {
  line-height: 2.575rem;
}
h5 {
  line-height: 2rem;
}
h6 {
  line-height: 1.75rem;
}
.text-primary {
  color: var(--az-dark-blue) !important;
}
.text-deep-blue {
  color: var(--az-deep-blue);
}
.bg-dark-purple {
  background: var(--az-dark-purple);
}
.bg-blue-light {
  background: var(--az-blue-light);
}
.bg-deep-blue {
  background: var(--az-deep-blue);
}
.bg-dark-blue {
  background: var(--az-dark-blue);
}
.line-clamp-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}
.bg-transparent {
  background: transparent;
}

.navbar .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: normal;
}
.object-bottom {
  object-position: bottom;
}
/* header.sticky .navbar-nav .nav-link,
header.sticky .fixed-header .navbar-nav .nav-link,
header.sticky .disable-fixed .navbar-nav .nav-link {
  padding-top: 30px;
  padding-bottom: 30px;
} */
/* header .left-nav .navbar-nav:before {
  background-color: var(--dark-gray);
  opacity: 0.2;
  transform: translate(-28px, 0px);
  -webkit-transform: translate(-28px, 0px);
  transition: 0s;
} */
header.sticky .left-nav .navbar-nav:before {
  transform: translate(-28px, 0px);
  -webkit-transform: translate(-28px, 0px);
}
header .btn.btn-small {
  padding: 10px 20px;
}

@media (min-width: 1200px) {
  header .navbar-brand img {
    max-height: 60px;
  }
}

@media (min-width: 1400px) {
  header .navbar-brand img {
    max-height: 70px;
  }
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu {
  width: 420px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a p {
  line-height: 22px;
  font-size: 14px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a img {
  width: 70px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon .dropdown-menu li a span {
  font-size: 17px;
  line-height: 30px;
}
.mobile-menu-height {
  height: 100%;
}
.grid-header {
  --header-padding: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "logo nav-links"
    "contacts contacts";
  width: 100%;
}
@media (min-width: 768px) {
  .grid-header {
    --header-padding: 40px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
      "logo nav-links nav-links"
      "contacts contacts quick-links";
  }
}

@media (min-width: 992px) {
  .grid-header {
    --header-padding: 40px;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "logo contacts quick-links"
      "nav-links nav-links nav-links";
  }
}

@media (min-width: 1200px) {
  .grid-header {
    --header-padding: 40px;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "logo contacts quick-links"
      "logo nav-links nav-links";
  }
}

.logo {
  grid-area: logo;
  place-content: center;
  padding: 0 20px 0 var(--header-padding);
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.contacts {
  grid-area: contacts;
  border-bottom: 1px solid #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  a {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--black);

    svg {
      --svg-size: 26px;
      height: var(--svg-size);
      width: var(--svg-size);
      stroke: var(--az-deep-blue);
      stroke-width: 1;
    }

    span {
      line-height: 1.4;
      b {
        font-size: 14px;
        font-weight: bold;
        color: var(--az-deep-blue);
        display: inline-block;
      }
    }

    span {
      line-height: 1.4;
      p {
        margin: 0;
      }
      strong {
        font-size: 14px;
        font-weight: bold;
        color: var(--az-deep-blue);
        display: inline-block;
      }
    }
  }
  .menu-divider {
    background: #cccccc;
  }
}
@media (min-width: 768px) {
  .contacts {
    justify-content: start;
    border-bottom: none;
    padding: 10px var(--header-padding);
    a {
      svg {
        --svg-size: 24px;
      }
    }
  }
}
@media (min-width: 992px) {
  .contacts {
    border-bottom: 1px solid #cccccc;
    padding: 10px 10px 10px var(--header-padding);
  }
}
@media (min-width: 1200px) {
  .contacts {
    justify-content: end;
    border-bottom: 1px solid #cccccc;
    padding: 10px var(--header-padding) 10px 20px;
  }
}

.quick-links {
  padding-left: 20px;
  padding-right: var(--header-padding);
  grid-area: quick-links;
  background: var(--az-dark-purple);
  display: flex;
  align-items: center;
  justify-content: end;
  svg {
    --quick-links-svg-size: 16px;
    width: var(--quick-links-svg-size);
    height: var(--quick-links-svg-size);
    stroke: var(--white);
  }
  a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--white);
    &:hover {
      color: var(--az-deep-blue);
      svg {
        stroke: var(--az-deep-blue);
      }
    }
  }
  a.active {
    color: var(--az-deep-blue);
  }
}

@media (min-width: 768px) {
  .quick-links {
    justify-self: end;
  }
}

.nav-links {
  grid-area: nav-links;
  display: flex;
  justify-content: end;
  padding: 14px var(--header-padding) 14px 14px;
  border-bottom: 1px solid #cccccc;
}
@media (min-width: 992px) {
  .nav-links {
    padding: 14px var(--header-padding) 14px var(--header-padding);
  }
}
@media (min-width: 1200px) {
  .nav-links {
    padding: 14px var(--header-padding) 14px 20px;
  }
}
@media (min-width: 1400px) {
  .nav-links {
    padding: 14px var(--header-padding) 14px var(--header-padding);
  }
}
.gradient-button {
  position: relative;
  padding: 14px 12px;
  height: 40px;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  border-radius: 11px;
  color: var(--black);
  cursor: pointer;
  background: linear-gradient(
    to right,
    var(--az-deep-blue-light),
    var(--az-green-light)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  &::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -1px;
    border-radius: 12px;
    background-image: linear-gradient(
      to right,
      var(--az-deep-blue),
      var(--az-green)
    );
  }
  &:hover {
    color: var(--az-deep-blue);
  }
}
.menu-divider {
  height: 20px;
  width: 1px;
  margin: 0px 14px;
  background: hsla(0, 0%, 100%, 0.4);
}
.bg-raven-blue {
  background-color: #6c757d;
}
.bg-orange {
  background-color: #ffa800;
}
.bg-base-color-transparent {
  background-color: rgba(6, 175, 71, 0.15);
}
.bg-base-color-light {
  background-color: #edf9f2;
}
.border-radius-left-8px {
  border-radius: 8px 0 0 0;
}
.bg-gradient-gray-light-dark-transparent {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(32, 35, 41, 1)),
    to(transparent)
  );
  background-image: linear-gradient(
    to top,
    rgba(32, 35, 41, 1) 0%,
    transparent 80%
  );
}
.text-orange {
  color: #ffa800;
}
.text-red {
  color: #ec5b54;
}
.btn {
  letter-spacing: normal;
  font-weight: 700;
}
.btn i {
  margin-left: 5px;
}
.btn.btn-hover-animation-switch .btn-icon {
  margin-left: 4px;
}
.btn.btn-hover-animation-switch:hover .btn-text {
  transform: translateX(21px);
}
.btn.btn-transparent-white-light:hover {
  background-color: transparent;
  border-color: #fff;
  color: var(--white);
}
.btn.btn-dark-gray:not(.btn.submit):hover,
.btn.btn-dark-gray:not(.btn.submit):active {
  background-color: var(--base-color);
  border-color: var(--base-color);
  color: var(--white);
}
.btn.btn-base-color:hover {
  background-color: var(--dark-gray);
  border-color: var(--dark-gray);
  color: var(--white);
}
.btn.btn-light-base-color {
  background-color: #c7e9d4;
  border-color: #c7e9d4;
  color: var(--dark-gray);
}
.btn.btn-box-shadow.btn-base-color:hover {
  background-color: var(--dark-gray);
  border-color: var(--dark-gray);
}
.btn.btn-link {
  padding: 0 0 2px;
}
.btn.text-uppercase-inherit i {
  top: 1px;
}
.right-minus-250px {
  right: -250px;
}
.right-minus-170px {
  right: -170px;
}
.right-minus-155px {
  right: -155px;
}
.bottom-minus-85px {
  bottom: -85px;
}
.page-title-extra-small h1 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 15px;
}
.page-title-extra-small h2 {
  font-size: 3.438rem;
  line-height: 3.438rem;
}
.icon-with-text-style-10:hover .feature-box-icon {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.contact-form-style-03 {
  margin-top: -100px;
}
.process-step-style-05 .progress-step-separator {
  bottom: -10px;
  height: 100%;
  z-index: -1;
}
.social-icon-style-02 .small-icon li {
  margin: 0;
}
input,
select,
textarea,
.form-control {
  font-size: 16px;
}
footer {
  font-size: 16px;
  line-height: 30px;
}
footer ul li {
  margin-bottom: 0;
}
footer .footer-logo img {
  max-height: 60px;
}
.footer-light a:hover {
  color: var(--dark-gray);
}
@media (max-width: 1199px) {
  .newsletter-style-03 .btn {
    padding: 12px 18px;
  }
  .newsletter-style-03 input {
    padding-right: 145px !important;
    padding-left: 20px !important;
  }
  header .left-nav .navbar-nav:before {
    transform: translate(-9px, 0px);
    -webkit-transform: translate(-9px, 0px);
  }
  header .btn.btn-small {
    padding: 9px 15px;
  }
}
@media (max-width: 991px) {
  .contact-form-style-03 {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .newsletter-style-03 input {
    padding-right: 70px !important;
    padding-left: 20px !important;
  }
}
@media (max-width: 576px) {
  .extra-small-screen {
    height: 300px !important;
  }
}
.banner-content-wrapper {
  background: var(--az-dark-blue);

  .banner-badge {
    position: absolute;
    z-index: 2;
    left: calc(100% + 30px);
    top: 50%;
    transform: translateY(-50%);
    width: max-content;
  }
}
@media (min-width: 992px) {
  .banner-content-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 720px;
    height: auto;
    z-index: 2;
  }
}
.banner-content-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 224px;
  z-index: 1;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0));
}
.floating-buttons {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: auto;
  z-index: 100;

  a:first-child {
    border-top-right-radius: 8px;
  }
  a:last-child {
    border-bottom-right-radius: 8px;
  }

  .ambulance-btn,
  .telephonic-btn {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--az-deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;

    svg {
      height: 24px;
      stroke: var(--white);
      stroke-width: 2px;
    }
    .floating-label {
      background: var(--az-deep-blue);
      &::before {
        border-right-color: var(--az-deep-blue);
      }
    }
  }

  .telephonic-btn {
    background: var(--golden-yellow);

    .floating-label {
      background: var(--golden-yellow);
      &::before {
        border-right-color: var(--golden-yellow);
      }
    }
  }

  .whatsapp-btn {
    position: relative;
    width: 40px;
    height: 40px;
    background: #29cb44;
    display: flex;
    align-items: center;
    justify-content: center;

    i {
      font-size: 24px;
      color: var(--white);
    }
    .floating-label {
      background: #29cb44;
      &::before {
        border-right-color: #29cb44;
      }
    }
  }

  @media (min-width: 768px) {
    .ambulance-btn,
    .telephonic-btn {
      width: 60px;
      height: 60px;
    }
    .whatsapp-btn {
      width: 60px;
      height: 60px;
    }
  }

  .floating-label {
    position: absolute;
    left: calc(100% + 30px);
    height: max-content;
    width: max-content;
    padding: 10px;
    font-size: 16px;
    border-radius: 10px;
    color: var(--white);
    line-height: 1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;

    &::before {
      content: "";
      position: absolute;
      left: -8px;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-right: 8px solid;
    }
  }
}
.floating-buttons a:hover .floating-label {
  left: calc(100% + 20px);
  visibility: visible;
  opacity: 1;
}

.banner-quick-links {
  background-color: var(--az-blue-light);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  a {
    line-height: 1.2;

    &:nth-child(2) {
      border-width: 0 1px;
      border-style: solid;
      border-color: rgba(0, 86, 166, 0.1);
    }

    svg {
      stroke: var(--az-dark-blue);
    }

    &:hover {
      background-color: var(--az-dark-purple);
      color: var(--white);
      svg {
        stroke: var(--az-deep-blue);
      }
    }
  }
}

@media (min-width: 768px) {
  .banner-quick-links {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.messages-section {
  background: url(../azeezia-images/azeezia-health-city-messages-section-bg-01.jpg)
    center center / cover no-repeat;
  padding: 60px 0px;

  .alt-font {
    font-size: 40px;
    span {
      color: var(--az-dark-blue);
    }
  }
  .name {
    line-height: 1;
    .alt-font {
      font-size: 24px;
      color: var(--az-dark-blue);
    }
    span {
      font-size: 20px;
      font-weight: 300;
      color: var(--medium-gray);
    }
  }
  .message-div-overlay {
    /* padding-left: 60px; */
    > * {
      position: relative;
      z-index: 6;
    }
    &::after {
      content: "";
      position: absolute;
      left: 0;
      top: -100%;
      bottom: 0;
      right: -100%;
      background: white;
      z-index: 1;
    }
    .quotes-green-icon {
      position: absolute;
      left: -95px;
      bottom: -46px;
      z-index: 10;
      transform: scaleX(-1);
    }
    .quotes-gray-icon {
      position: absolute;
      right: -70px;
      top: -30px;
      z-index: 2;
    }
  }

  figure {
    &::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: -10px;
      width: 20px;
      height: 20px;
      background: var(--az-deep-blue);
      transform: rotate(45deg);
      z-index: 10;
    }
    img:first-child {
      border-top-left-radius: 106px;
    }
  }

  &.with-left-content {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 90%),
      rgba(0, 85, 166, 10%)
    );
    position: relative;

    .blue-circle-text {
      --circle-size: 140px;
      position: absolute;
      right: calc(-1 * var(--circle-size) / 2);
      width: 140px;
      height: 140px;
    }

    .message-div-overlay {
      &::after {
        right: 0;
        top: -100%;
        bottom: 0;
        left: -100%;
      }
      .quotes-green-icon {
        left: auto;
        right: -95px;
        bottom: -46px;
        transform: scaleX(1);
      }
      .quotes-gray-icon {
        right: auto;
        left: -70px;
        transform: scaleX(-1);
      }
    }
    figure {
      &::after {
        bottom: -10px;
        right: -10px;
        left: auto;
      }
      img:first-child {
        border-top-left-radius: 0px;
        border-top-right-radius: 106px;
      }
    }
  }
}
.department-section {
  padding: 60px 0px;
  background-color: var(--az-dark-blue);
  position: relative;

  * {
    position: relative;
    z-index: 2;
  }

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../azeezia-images/banner/azeezia-health-city-banner-02.jpg)
      center center / cover no-repeat;
    background-blend-mode: darken;
    opacity: 0.1;
  }

  .department-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    gap: 20px;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    background: var(--white);

    img {
      width: 50px;
    }

    h5 {
      font-size: 16px;
      line-height: 1.2;
      margin: 0;
      color: var(--black);
    }
    &:hover {
      background: var(--az-deep-blue);
      img,
      h5 {
        filter: brightness(0) invert(1);
      }
    }
  }
  .all-departments {
    color: var(--white);
    font-size: 18px;
    &:hover {
      color: var(--az-green);
    }
    svg {
      stroke: var(--az-green);
    }
  }
  .department-slider-next,
  .department-slider-prev {
    all: unset;
    cursor: pointer;
    border-radius: 14px;
    padding: 6px 14px;
    border: 1px solid var(--white);
    user-select: none;
    transition: all 0.3s ease;
    &:hover {
      border-color: var(--az-deep-blue);
      background: var(--az-deep-blue);
      transform: scale(0.95);
    }
  }

  .blue-circle-text {
    --circle-size: 140px;
    position: absolute;
    right: calc(-1 * var(--circle-size) / 2);
    top: calc(-1 * var(--circle-size) / 2);
    width: 140px;
    height: 140px;
  }
  .hospital-plus-icon {
    position: absolute;
    left: 60px;
    top: 30px;
    width: 100px;
  }
}
.facilities-section {
  padding: 60px 0px;
  background-color: #fff;
  position: relative;
  * {
    position: relative;
    /* z-index: 2; */
  }

  .facilities-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    gap: 20px;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    background: linear-gradient(
      to right,
      var(--az-deep-blue-light),
      var(--az-green-light)
    );

    img {
      width: 30px;
    }

    h5 {
      font-size: 16px;
      line-height: 1.2;
      margin: 0;
      color: var(--black);
    }
    &:hover {
      background: #449fc7;
      /* background: var(--az-deep-blue); */
      img,
      h5 {
        filter: brightness(0) invert(1);
      }
    }
  }
}

.rotating-text {
  animation: spin 8s linear infinite;
  transform-origin: center center;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.doctors-section {
  position: relative;
  .btn {
    padding: 4px 10px;
    background: var(--az-dark-purple);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--primary-font);
    font-weight: normal;
    font-size: 14px;
    line-height: 1;

    svg {
      stroke: var(--az-green);
    }
  }
  figure {
    background: #e6e6e6;
  }
  .doctors-card-overlay {
    background-image: linear-gradient(
      to top,
      rgba(0, 86, 166, 1),
      rgba(255, 255, 255, 0) 50%
    );
  }

  .green-circle-text {
    --circle-size: 140px;
    position: absolute;
    left: calc(-1 * var(--circle-size) / 2);
    bottom: calc(-1 * var(--circle-size) / 2);
    width: 140px;
    height: 140px;
  }
}

.medical-facilities-section {
  position: relative;
  .vertical-divider {
    height: 40px;
    width: 2px;
    background: #cccccc;
    margin-right: 20px;
  }

  .facilities-slider-prev,
  .facilities-slider-next {
    all: unset;
    cursor: pointer;
    border-radius: 14px;
    padding: 6px 14px;
    border: 1px solid var(--az-deep-blue);
    user-select: none;
    transition: all 0.3s ease;
    &:hover {
      transform: scale(0.92);
    }
  }

  .facilities-card-overlay {
    background-image: linear-gradient(
      to top,
      var(--black),
      rgba(255, 255, 255, 0) 40%
    );
  }

  .green-circle-text {
    --circle-size: 140px;
    position: absolute;
    left: calc(-1 * var(--circle-size) / 2);
    top: calc(-1 * var(--circle-size) / 2);
    width: 140px;
    height: 140px;
  }
}

.patients-testimonial-section {
  .testimonial-video-wrapper {
    p {
      color: var(--white);
      display: flex;
      flex: 1;
      align-items: center;
      font-size: 24px;

      svg {
        stroke: var(--az-deep-blue);
      }
    }
    &::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0) 50%
      );
    }
  }
  .patients-testimonial-slider {
    padding: 1px;

    .swiper-wrapper {
      transition-timing-function: linear;
    }

    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 80px;
      background: linear-gradient(
        to top,
        rgb(255, 255, 255) 10%,
        rgba(255, 255, 255, 0) 100%
      );
      z-index: 2;
    }
  }
  .testimonial-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.171);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
    border-radius: 12px;
    pointer-events: none;

    p {
      font-size: 14px;
      line-height: 22px;
      margin: 0;
    }

    span {
      font-size: 16px;
    }

    svg {
      stroke: var(--az-deep-blue);
    }

    &:hover {
      border-left: 3px solid var(--az-deep-blue);
    }
  }
  .all-testimonials {
    display: inline-block;
    margin-top: 20px;
    color: var(--black);

    svg {
      stroke: var(--az-deep-blue);
    }
    &:hover {
      color: var(--az-deep-blue);
    }
  }
}

@media (hover: hover) and (pointer: fine) {
  .swiper {
    cursor: grab;
  }

  .swiper:active {
    cursor: grabbing;
  }
}

.border-color-deep-blue {
  border-color: var(--az-deep-blue) !important;
}

.excellence-section {
  background: rgba(0, 85, 166, 0.2);
  padding: 60px 0 0 0;

  .aerial-view-img {
    position: relative;
    margin-top: 40px;

    img {
      border-radius: 20px 20px 0 0;
    }

    .blue-circle-text {
      position: absolute;
      left: 50%;
      top: -70px;
      translate: -50%;
      z-index: -1;
    }

    .btn-wrapper {
      position: absolute;
      left: 50%;
      bottom: 20px;
      translate: -50%;

      .gradient-border-button {
        position: relative;
        display: inline-block;
        padding: 4px 14px;
        font-weight: 500;
        font-size: 14px;
        color: white;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1;
        border-radius: 12px;
        text-decoration: none;
        overflow: hidden;
      }

      .gradient-border-button::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 2px;
        border-radius: 12px;
        background: linear-gradient(
          to right,
          var(--az-deep-blue),
          var(--az-green)
        );
        -webkit-mask: linear-gradient(#fff 0 0) content-box,
          linear-gradient(#fff 0 0);
        -webkit-mask-composite: destination-out;
        mask-composite: exclude;
        z-index: -1;
      }
    }
  }
}

.latest-updates-section {
  padding: 60px 0;
}

.footer-section {
  background: var(--az-dark-purple);
  color: var(--white);

  .divider {
    height: 18px;
    width: 1px;
    background: #cccccc;
  }

  a {
    color: var(--white);
    font-weight: normal;
    font-size: 14px;
  }

  .footer-contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 0px;

    svg {
      stroke: var(--az-green);
    }

    a {
      font-weight: bold;
    }
  }

  .footer-social-links {
    display: flex;
    align-items: center;
    gap: 40px;

    .social-icons {
      display: flex;
      gap: 20px;

      a {
        color: var(--az-green);
      }
      i {
        font-size: 18px;
      }
    }
  }
}

.page-title-section {
  position: relative;
  overflow-inline: clip;
  .blue-circle-text {
    position: absolute;
    bottom: -70px;
    right: -70px;
    z-index: 10;
  }
}

.faq-section {
  padding: 60px 0;
}

.all-patients-testimonial-section {
  background: var(--az-blue-light);
  .testimonials-masonry {
    column-count: 1;
    column-gap: 24px;

    .testimonials-masonry-card {
      display: inline-block;
      width: 100%;
      background: #ffffff;
      margin: 0 0 24px;
      padding: 24px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(22, 138, 255, 0.1);
      break-inside: avoid;
      transition: transform 0.3s ease;
    }

    .testimonials-masonry-card:hover {
      transform: translateY(-4px);
    }
  }
  @media (min-width: 768px) {
    .testimonials-masonry {
      column-count: 2;
    }
  }
  @media (min-width: 992px) {
    .testimonials-masonry {
      column-count: 3;
    }
  }
}

.our-facilities-section {
  a:hover {
    span {
      color: var(--az-dark-blue) !important;
    }
  }
}

.awsm-job-main.awsm-job-single-content {
  margin-top: 8rem;

  .entry-title.awsm-jobs-single-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--az-dark-blue);
  }

  .wp-block-heading {
    font-size: 1.3rem;
    font-family: var(--primary-font);
  }

  .awsm-job-form-inner h2 {
    font-family: var(--primary-font);
    font-size: 1.4rem;
    font-weight: 600;
  }

  .awsm-job-specifications-container {
    padding: 1.4rem;
    border: 1px solid #cccc;
  }
  .wp-block-heading {
    margin-bottom: 16px;
  }
  ul.wp-block-list {
    li {
      list-style: initial;
    }
  }
  p,
  li {
    font-size: 16px;
  }
}

.doctors-profile-section {
  position: relative;

  * {
    position: relative;
    z-index: 2;
  }

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../azeezia-images/banner/azeezia-health-city-banner-03.jpg)
      center center / cover no-repeat;
    background-blend-mode: darken;
    opacity: 0.1;
  }

  &.department-page::after {
    background: url(../azeezia-images/banner/azeezia-health-city-banner-02.jpg)
      center center / cover no-repeat;
  }
}

.doctor-swiper-wrapper {
  margin-top: -20px;
  .swiper-slide {
    width: auto !important;
    padding: 10px 20px;
    background-color: var(--az-deep-blue);
    color: var(--white);
    border: 1px solid var(--az-deep-blue);
    border-radius: 60px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;

    &:hover {
      background-color: var(--az-green);
      border: 1px solid var(--black);
      color: var(--black);
    }
  }

  .swiper-slide.active-slide {
    border: 1px solid var(--black);
  }

  .swiper-button-prev,
  .swiper-button-next {
    color: var(--az-dark-blue);
  }
}
.top-radius {
  border-radius: 20px 20px 0px;
}
#Overview,
#Experience,
#Memberships,
#Publications,
#TreatedConditions,
#TreatmentProcedures {
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--az-dark-blue);
  }
}
#Overview ul,
#Experience ul,
#Memberships ul,
#Publications ul,
#TreatedConditions ul,
#TreatmentProcedures ul {
  padding: 0;
  li {
    position: relative;
    padding-left: 30px;
    color: var(--black);
  }
  li::after {
    content: "";
    position: absolute;
    background: url(../azeezia-images/li-stethoscope-icon.png);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    left: 0;
    top: 8px;
  }
}

.all-doctors-section {
  .doctor-image-wrapper {
    overflow: hidden;
    min-width: 180px;
    width: 180px;
    min-height: 200px;
    height: 200px;
    border-radius: 8px;

    .doctor-image {
      height: 100%;
      width: 100%;
      background-color: var(--light-medium-gray);
      object-fit: contain;
      object-position: bottom;
    }
  }
  .btn-doctor-link {
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);

    &:hover {
      background: var(--az-dark-blue);
      i {
        color: var(--white) !important;
      }
    }
  }
  @media screen and (min-width: 1200px) {
    .btn-doctor-link {
      top: -24px;
      left: 70%;
      transform: translateX(0%);
    }
  }
}

.department-page-title-section .dept-wrapper {
  background: var(--az-deep-blue);
  border-radius: 20%;
  padding: 16px;

  img {
    filter: brightness(0) invert(1);
  }
}
@media (max-width: 991px) {
  .awsm-job-container {
    padding: 40px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1250px) {
  .awsm-job-container {
    padding: 60px 40px;
  }
}

.preloaderBg {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader {
  background: url(../azeezia-images/azeezia-health-city-logo-icon.png) no-repeat
    center;
  background-size: 80px;
  width: 100px;
  height: 100px;
  overflow: hidden;
}

.preloader2 {
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--az-deep-blue);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 1s ease-in-out infinite;
  position: absolute;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.preloaderBg.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

ul.wp-block-list {
  li {
    list-style: initial;
  }
}
 
.search-form{
  border-radius: 12px;
  overflow: hidden;

  .btn{
    background-color: var(--az-deep-blue);
    border-color: var(--az-deep-blue);
  }

  .btn:hover{
    background-color: var(--az-dark-purple);
    border-color: var(--az-dark-purple);
  }
}