.healthcare-landing-banner.inner-banner:after {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #0B0A0F80;
  top: 0;
  left: 0;
  content: "";
  opacity: 0.5;
}

.clinician-tag {
  margin-top: 20px;
}

.clinician-tag h4 {
  color: #f04d23;
  font-family: Arial;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
}

/* ===== Section Styling ===== */

.ai-healthcare-section {
  width: 100%;
  padding: 40px 0px 90px 0;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.ai-healthcare-section .container {
  margin-right: 0px !important;
  padding: 0;
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ===== Left Content ===== */

.content-wrapper {
  flex: 1;
  max-width: 500px;
}

.content-wrapper h2 {
  color: #F04D23;
  margin-bottom: 24px;
  font-family: Arial;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  margin-bottom: 13px;
}

.ai-healthcare-section .subtitle {
  color: #000;
  margin-bottom: 20px;
  font-family: Arial;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
}

.ai-healthcare-section .description {
  color: #000;
  margin-bottom: 20px;
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
}


/* ===== Image ===== */

.image-wrapper {
  flex: 1;
  display: flex;
  justify-content: end;
  align-items: center;
}

.image-wrapper img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
}

/* ===== Responsive ===== */
@media (min-width: 1400px) {
  .ai-healthcare-section .container {
    margin-right: 0px !important;
    padding: 0;
    max-width: 92%;
  }
}

@media (min-width: 1550px) {
  .ai-healthcare-section .container {
    margin-right: 0px !important;
    padding: 0;
    max-width: 86%;
  }
}

@media (min-width: 1700px) {
  .ai-healthcare-section .container {
    margin-right: 0px !important;
    padding: 0;
    max-width: 85%;
  }
}

@media (max-width: 992px) {
  .ai-healthcare-section .container {
    flex-direction: column;
    text-align: center;
    margin-right: auto !important;
    gap: 0;
  }

  .content-wrapper {
    max-width: 100%;
  }

  .content-wrapper h2 {
    font-size: 38px;
  }

  .content-wrapper h2 br {
    display: none;
  }

  br {
    display: none;
  }

  .image-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .ai-healthcare-section {
    padding: 60px 20px;
  }

  .content-wrapper h2 {
    font-size: 30px;
  }

  .subtitle {
    font-size: 16px;
  }

  .description {
    font-size: 14px;
  }

  .demo-btn {
    padding: 12px 24px;
    font-size: 13px;
  }
}

/* ===== GEO Scheduling Section Starts===== */

.geo-scheduling-section {
  width: 100%;
  padding-top: 0;
  padding-bottom: 90px;
  font-family: Arial, sans-serif;
}

.geo-scheduling-section .container {
  margin: 0 auto;
}

/* ===== Header ===== */

.geo-scheduling-section .section-header {
  text-align: center;
  max-width: 940px;
  margin: 0 auto 40px;
}

.geo-scheduling-section .section-header h2 {
  color: #F04D23;
  margin-bottom: 24px;
  font-family: Arial;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 15px;
}

.geo-scheduling-section .section-header p {
  color: #000;
  max-width: 820px;
  margin: 0 auto;
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
}

/* ===== Cards ===== */

.geo-scheduling-section .cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== Card ===== */

.geo-scheduling-section .feature-card {
  background: #ffffff;
  padding: 35px 50px;
  text-align: center;
  box-shadow: 0px 0px 34px 0px #00000014;
  transition: all 0.3s ease;
}

.geo-scheduling-section .feature-card:hover {
  transform: translateY(-6px);
}

.geo-scheduling-section .icon-box {
  width: 65px;
  height: 65px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-scheduling-section .icon-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.geo-scheduling-section .feature-card h3 {
  color: #000;
  margin-bottom: 18px;
  font-family: Arial;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
}

.geo-scheduling-section .feature-card p {
  color: #373737;
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {

  .geo-scheduling-section .cards-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .geo-scheduling-section .section-header h2 {
    font-size: 36px;
  }

  .geo-scheduling-section .feature-card {
    padding: 40px 30px;
  }
}

@media (max-width: 576px) {
  .geo-scheduling-section .cards-wrapper {
    grid-template-columns: 1fr;
  }

  .geo-scheduling-section {
    padding: 70px 20px;
  }

  .geo-scheduling-section .section-header h2 {
    font-size: 28px;
  }

  .geo-scheduling-section .section-header p {
    font-size: 15px;
  }

  .geo-scheduling-section .feature-card h3 {
    font-size: 22px;
  }

  .geo-scheduling-section .feature-card p {
    font-size: 15px;
  }
}


/* ===== GEO Scheduling Section Ends===== */

/* ===== Healthcare Scheduling Section Starts===== */


.healthcare-scheduling-section {
  width: 100%;
  padding-top: 0px;
  padding-bottom: 80px;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* ===== Container ===== */

.healthcare-scheduling-section .healthcare-scheduling-container {
  margin: 0 auto;
  margin-right: 0;
  max-width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 0;
}

/* ===== Left Content ===== */

.healthcare-scheduling-section .healthcare-scheduling-content {
  flex: 1;
  max-width: 520px;
}

.healthcare-scheduling-section .healthcare-scheduling-heading {
  color: #F04D23;
  font-family: Arial;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  margin-bottom: 13px;
}

.healthcare-scheduling-section .healthcare-scheduling-description {
  color: #000;
  margin-bottom: 20px;
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
}

/* ===== Right Image ===== */

.healthcare-scheduling-section .healthcare-scheduling-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: end;
  align-items: center;
}

.healthcare-scheduling-section .healthcare-scheduling-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {

  .healthcare-scheduling-section .healthcare-scheduling-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
    margin-right: auto !important;
  }

  .healthcare-scheduling-section .healthcare-scheduling-content {
    max-width: 100%;
  }

  .healthcare-scheduling-section .healthcare-scheduling-heading {
    font-size: 38px;
  }
}

@media (max-width: 576px) {

  .healthcare-scheduling-section {
    padding: 70px 20px;
  }

  .healthcare-scheduling-section .healthcare-scheduling-heading {
    font-size: 30px;
  }

  .healthcare-scheduling-section .healthcare-scheduling-description {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* ===== Healthcare Scheduling Section Ends===== */

/* ===== Patient Growth Section Starts  ======== */

.patient-growth-section {
  width: 100%;
  padding: 90px 0px 0px 0px;
  background-color: #F8F9FA;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* =========================================================
   CONTAINER
========================================================= */

.patient-growth-section .patient-growth-section__container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* =========================================================
   LEFT IMAGE
========================================================= */

.patient-growth-section .patient-growth-section__images {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.patient-growth-section .patient-growth-section__image-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.patient-growth-section .patient-growth-section__image {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   RIGHT CONTENT
========================================================= */

.patient-growth-section .patient-growth-section__content {
  flex: 1;
  max-width: 500px;
}

/* ===== Content Item ===== */

.patient-growth-section .patient-growth-section__content-item {
  margin-bottom: 45px;
}

.patient-growth-section .patient-growth-section__content-item:last-child {
  margin-bottom: 0;
}

/* ===== Heading ===== */

.patient-growth-section .patient-growth-section__heading {
  color: #F04D23;
  font-family: Arial;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  margin-bottom: 13px;
}

/* ===== Text ===== */

.patient-growth-section .patient-growth-section__text {
  color: #000;
  margin-bottom: 20px;
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {

  .patient-growth-section .patient-growth-section__container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .patient-growth-section .patient-growth-section__content {
    max-width: 100%;
  }

  .patient-growth-section .patient-growth-section__heading {
    font-size: 34px;
  }

  .patient-growth-section .patient-growth-section__images {
    justify-content: center;
  }
}

@media (max-width: 576px) {

  .patient-growth-section {
    padding: 70px 20px;
  }

  .patient-growth-section .patient-growth-section__images {
    flex-direction: column;
    align-items: center;
  }

  .patient-growth-section .patient-growth-section__image-box--left,
  .patient-growth-section .patient-growth-section__image-box--center {
    margin: 0;
  }

  .patient-growth-section .patient-growth-section__heading {
    font-size: 28px;
  }

  .patient-growth-section .patient-growth-section__text {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* ===== Patient Growth Section Ends  ======== */

/* ===== Caregiver Visibility Section Starts ==== */

.caregiver-visibility-section {
  width: 100%;
  padding: 100px 0px;
  font-family: Arial, sans-serif;
}

/* =========================================================
   CONTAINER
========================================================= */

.caregiver-visibility-section .caregiver-visibility-section__container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.caregiver-visibility-section .caregiver-visibility-section__content {
  flex: 1;
  max-width: 500px;
}

/* ===== Heading ===== */

.caregiver-visibility-section .caregiver-visibility-section__heading {
  color: #F04D23;
  font-family: Arial;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  margin-bottom: 13px;
}

/* ===== Sub Heading ===== */

.caregiver-visibility-section .caregiver-visibility-section__subheading {
  color: #000;
  margin-bottom: 16px;
  font-family: Arial;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 0%;
}

/* ===== Description ===== */

.caregiver-visibility-section .caregiver-visibility-section__description {
  color: #000;
  margin-bottom: 20px;
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
}

/* ===== Link ===== */

.caregiver-visibility-section .caregiver-visibility-section__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Arial;
  font-weight: 700;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #00B6B8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.caregiver-visibility-section .caregiver-visibility-section__link:hover {
  opacity: 0.8;
}

/* ===== Arrow ===== */

.caregiver-visibility-section .caregiver-visibility-section__arrow {
  transition: transform 0.3s ease;
}

.caregiver-visibility-section .caregiver-visibility-section__link:hover .caregiver-visibility-section__arrow {
  transform: translateX(4px);
}

/* =========================================================
   RIGHT IMAGE
========================================================= */

.caregiver-visibility-section .caregiver-visibility-section__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== Image ===== */

.caregiver-visibility-section .caregiver-visibility-section__image {
  width: 100%;
  /* max-width: 520px; */
  height: auto;
  display: block;
  border-radius: 8px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {

  .caregiver-visibility-section .caregiver-visibility-section__container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .caregiver-visibility-section .caregiver-visibility-section__content {
    max-width: 100%;
  }

  .caregiver-visibility-section .caregiver-visibility-section__heading {
    font-size: 36px;
  }

  .caregiver-visibility-section .caregiver-visibility-section__subheading {
    font-size: 24px;
  }
}

@media (max-width: 576px) {

  .caregiver-visibility-section {
    padding: 70px 20px;
  }

  .caregiver-visibility-section .caregiver-visibility-section__heading {
    font-size: 30px;
  }

  .caregiver-visibility-section .caregiver-visibility-section__subheading {
    font-size: 20px;
  }

  .caregiver-visibility-section .caregiver-visibility-section__description {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* ===== Caregiver Visibility Section Starts ==== */

/* ===== Carehudl Cta Section Starts =========== */

.carehudl-cta-section {
  width: 100%;
  padding: 100px 0px;
  background-color: #F8F9FA;
  font-family: Arial, sans-serif;
}

/* =========================================================
   CONTAINER
========================================================= */

.carehudl-cta-section .carehudl-cta-section__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* =========================================================
   HEADING
========================================================= */

.carehudl-cta-section .carehudl-cta-section__heading {
  color: #F04D23;
  font-family: Arial;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  margin-bottom: 13px;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.carehudl-cta-section .carehudl-cta-section__description {
  color: #000;
  margin-bottom: 33px;
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

  .carehudl-cta-section .carehudl-cta-section__heading {
    font-size: 36px;
  }

  .carehudl-cta-section .carehudl-cta-section__description {
    font-size: 15px;
  }
}

@media (max-width: 576px) {

  .carehudl-cta-section {
    padding: 70px 20px;
  }

  .carehudl-cta-section .carehudl-cta-section__heading {
    font-size: 28px;
  }

  .carehudl-cta-section .carehudl-cta-section__button {
    padding: 14px 30px;
    font-size: 14px;
  }
}

/* ===== Carehudl Cta Section Starts ==== */

/* ===== Healthcare Integration Section Starts ==== */
.healthcare-integration-section {
  width: 100%;
  padding: 90px 0px;
  font-family: Arial, sans-serif;
}

/* =========================================================
   CONTAINER
========================================================= */

.healthcare-integration-section .healthcare-integration-section__container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* =========================================================
   LEFT IMAGE
========================================================= */

.healthcare-integration-section .healthcare-integration-section__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== Image ===== */

.healthcare-integration-section .healthcare-integration-section__image {
  width: 100%;
  /* max-width: 650px; */
  height: auto;
  display: block;
}

/* =========================================================
   RIGHT CONTENT
========================================================= */

.healthcare-integration-section .healthcare-integration-section__content {
  flex: 1;
  max-width: 540px;
}

/* ===== Content Block ===== */

.healthcare-integration-section .healthcare-integration-section__content-block {
  margin-bottom: 70px;
}

.healthcare-integration-section .healthcare-integration-section__content-block:last-child {
  margin-bottom: 0;
}

/* =========================================================
   HEADING
========================================================= */

.healthcare-integration-section .healthcare-integration-section__heading {
  color: #F04D23;
  font-family: Arial;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  margin-bottom: 13px;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.healthcare-integration-section .healthcare-integration-section__description {
  color: #000;
  margin-bottom: 16px;
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
}

/* =========================================================
   FEATURE LIST
========================================================= */

.healthcare-integration-section .healthcare-integration-section__list {
  padding-left: 0px;
  margin-left: 0px;
  margin-bottom: 25px;
}

.healthcare-integration-section .healthcare-integration-section__list-item {
  color: #000;
  margin-bottom: 0;
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
}

/* =========================================================
   LINK
========================================================= */

.healthcare-integration-section .healthcare-integration-section__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Arial;
  font-weight: 700;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #00B6B8;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ===== Hover ===== */

.healthcare-integration-section .healthcare-integration-section__link:hover {
  opacity: 0.8;
}

/* ===== Arrow ===== */

.healthcare-integration-section .healthcare-integration-section__arrow {
  transition: transform 0.3s ease;
}

.healthcare-integration-section .healthcare-integration-section__link:hover .healthcare-integration-section__arrow {
  transform: translateX(4px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {

  .healthcare-integration-section .healthcare-integration-section__container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .healthcare-integration-section .healthcare-integration-section__content {
    max-width: 100%;
  }

  .healthcare-integration-section .healthcare-integration-section__heading {
    font-size: 34px;
  }

  .healthcare-integration-section .healthcare-integration-section__list {
    text-align: left;
    display: inline-block;
  }
}

@media (max-width: 576px) {

  .healthcare-integration-section {
    padding: 70px 20px;
  }

  .healthcare-integration-section .healthcare-integration-section__heading {
    font-size: 28px;
  }

  .healthcare-integration-section .healthcare-integration-section__description,
  .healthcare-integration-section .healthcare-integration-section__list-item {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* ===== Healthcare Integration Section Ends ==== */

/* ===== Healthcare Platform Section Starts ==== */
.healthcare-platform-section {
  width: 100%;
  padding: 0px 0 100px 0px;
  font-family: Arial, sans-serif;
}

/* =========================================================
   CONTAINER
========================================================= */

.healthcare-platform-section .healthcare-platform-section__container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.healthcare-platform-section .healthcare-platform-section__content {
  flex: 1;
  max-width: 520px;
}

/* ===== Heading ===== */

.healthcare-platform-section .healthcare-platform-section__heading {
  color: #F04D23;
  font-family: Arial;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  margin-bottom: 13px;
  line-height: 1.2;
  font-weight: 700;
  color: #f15a24;
  margin-bottom: 35px;
}

/* =========================================================
   FEATURE LIST
========================================================= */

.healthcare-platform-section .healthcare-platform-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== List Item ===== */

.healthcare-platform-section .healthcare-platform-section__list-item {
  position: relative;
  margin-left: 0px;
  padding-left: 30px;
  margin-bottom: 0px;
  color: #000;
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
}

/* ===== Custom Check Icon ===== */

.healthcare-platform-section .healthcare-platform-section__list-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  font-weight: 700;
  color: #11b6c9;
}

/* =========================================================
   RIGHT IMAGE
========================================================= */

.healthcare-platform-section .healthcare-platform-section__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== Image ===== */

.healthcare-platform-section .healthcare-platform-section__image {
  width: 100%;
  /* max-width: 520px; */
  height: auto;
  display: block;
  border-radius: 10px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {
  .carehudl-cta-section {
    width: 100%;
    padding: 70px 0px;
    background-color: #F8F9FA;
    font-family: Arial, sans-serif;
  }

  .healthcare-platform-section .healthcare-platform-section__container {
    flex-direction: column;
    text-align: left;
    gap: 60px;
  }

  .healthcare-platform-section .healthcare-platform-section__content {
    max-width: 100%;
  }

  .healthcare-platform-section .healthcare-platform-section__heading {
    font-size: 36px;
  }

  .healthcare-platform-section .healthcare-platform-section__list {
    display: inline-block;
    text-align: left;
  }
}

@media (max-width: 576px) {

  .healthcare-platform-section {
    padding: 70px 20px;
  }

  .healthcare-platform-section .healthcare-platform-section__heading {
    font-size: 28px;
  }

  .healthcare-platform-section .healthcare-platform-section__list-item {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ===== Healthcare Platform Section Ends ==== */

/* ===== Care Delivery Banner Section Starts ==== */
/* =========================================================
   MAIN SECTION
========================================================= */

.care-delivery-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-image: url("/wp-content/uploads/2026/05/care-delivery-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: Arial, sans-serif;
  padding: 0px;
}

/* =========================================================
   CONTAINER
========================================================= */

.care-delivery-banner-section .care-delivery-banner-section__container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 80px 20px;
}

/* =========================================================
   CONTENT
========================================================= */

.care-delivery-banner-section .care-delivery-banner-section__content {
  max-width: 750px;
  text-align: center;
}

/* =========================================================
   HEADING
========================================================= */

.care-delivery-banner-section .care-delivery-banner-section__heading {
  color: #ffffff;
  margin-bottom: 14px;
  font-family: Arial;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.care-delivery-banner-section .care-delivery-banner-section__description {
  color: #ffffff;
  margin-bottom: 40px;
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
}

/* =========================================================
   BUTTON
========================================================= */

.btn-request-white-demo {
  background: #fff !important;
  color: #000;
  padding: 15px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  min-height: 60px;
  position: relative;
  text-decoration: none !important;
  font-weight: 700;
  text-transform: none;
  font-family: Arial;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  padding: 16px 29px;
}

.btn-request-white-demo:before {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 90px;
  border-radius: 50px;
  content: "";
  background: #F8F8F8;
  transition: .2s;
  z-index: 0;
}

.btn-request-white-demo:hover:before {
  width: 100%;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {



  .care-delivery-banner-section .care-delivery-banner-section__heading {
    font-size: 40px;
  }

  .care-delivery-banner-section .care-delivery-banner-section__description {
    font-size: 16px;
  }
}

@media (max-width: 576px) {

  .care-delivery-banner-section {
    min-height: 380px;
  }

  .care-delivery-banner-section .care-delivery-banner-section__container {
    min-height: 380px;
    padding: 60px 20px;
  }

  .care-delivery-banner-section .care-delivery-banner-section__heading {
    font-size: 30px;
  }

  .care-delivery-banner-section .care-delivery-banner-section__description {
    font-size: 15px;
    line-height: 1.7;
  }

  .care-delivery-banner-section .care-delivery-banner-section__button {
    padding: 14px 30px;
    font-size: 14px;
  }
}

/* ===== Care Delivery Banner Section Ends ==== */

/* ===== FAQ Section Starts ==== */
/* =========================================================
   MAIN SECTION
========================================================= */

.healthcare-faq-section {
  width: 100%;
  padding: 100px 0px;
  background-color: #f7f7f7;
  font-family: Arial, sans-serif;
}

/* =========================================================
   CONTAINER
========================================================= */

.healthcare-faq-section .healthcare-faq-section__container {
  max-width: 850px;
  margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.healthcare-faq-section .healthcare-faq-section__header {
  text-align: center;
  margin-bottom: 50px;
}

/* ===== Heading ===== */

.healthcare-faq-section .healthcare-faq-section__heading {
  color: #F04D23;
  font-family: Arial;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
}

/* =========================================================
   ACCORDION
========================================================= */

.healthcare-faq-section .healthcare-faq-section__accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* =========================================================
   CARD
========================================================= */

.healthcare-faq-section .healthcare-faq-section__card {
  border: 1px solid #E9E9E9;
  border-radius: 6px !important;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0px 4px 4px 0px #00000005;
}

/* ===== Card Header ===== */

.healthcare-faq-section .healthcare-faq-section__card-header {
  background: transparent;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
}

/* =========================================================
   BUTTON
========================================================= */

.healthcare-faq-section .healthcare-faq-section__button {
  width: 100%;
  padding: 20px 23px 20px 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  text-decoration: none !important;
  color: #111111;
}

/* ===== Remove Bootstrap Focus ===== */

.healthcare-faq-section .healthcare-faq-section__button:focus {
  box-shadow: none;
}

/* ===== Question ===== */

.healthcare-faq-section .healthcare-faq-section__question {
  font-family: Arial;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: none !important;
}

/* =========================================================
   ICON
========================================================= */

.healthcare-faq-section .healthcare-faq-section__icon {
  position: relative;
  width: 16px;
  height: 16px;
  margin-left: 20px;
  flex-shrink: 0;
}

/* ===== Common Line Style ===== */

.healthcare-faq-section .healthcare-faq-section__icon::before,
.healthcare-faq-section .healthcare-faq-section__icon::after {
  content: "";
  position: absolute;
  background-color: #111111;
  transition: all 0.3s ease;
}

/* ===== Horizontal Line ===== */

.healthcare-faq-section .healthcare-faq-section__icon::before {
  width: 16px;
  height: 1.5px;
  top: 7px;
  left: 0;
}

/* ===== Vertical Line ===== */

.healthcare-faq-section .healthcare-faq-section__icon::after {
  width: 1.5px;
  height: 16px;
  top: 0;
  left: 8px;
}

/* =========================================================
   OPEN STATE
========================================================= */

/* First Line */

.healthcare-faq-section .healthcare-faq-section__button:not(.collapsed) .healthcare-faq-section__icon::before {
  background-color: #F04D23;
  transform: rotate(135deg);
  top: 7px;
}

/* Second Line */

.healthcare-faq-section .healthcare-faq-section__button:not(.collapsed) .healthcare-faq-section__icon::after {
  background-color: #F04D23;
  transform: rotate(-45deg);
  left: 8px;
  top: 0;
}

/* =========================================================
   CARD BODY
========================================================= */

.healthcare-faq-section .healthcare-faq-section__card-body {
  padding: 0 28px 28px;
}

/* ===== Answer ===== */

.healthcare-faq-section .healthcare-faq-section__answer {
  color: #000;
  margin: 0px;
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
}

/* =========================================================
   HOVER
========================================================= */

.healthcare-faq-section .healthcare-faq-section__card:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

  .healthcare-faq-section {
    padding: 80px 20px;
  }

  .healthcare-faq-section .healthcare-faq-section__heading {
    font-size: 34px;
  }

  .healthcare-faq-section .healthcare-faq-section__button {
    padding: 20px;
  }

  .healthcare-faq-section .healthcare-faq-section__card-body {
    padding: 0 20px 20px;
  }

  .healthcare-faq-section .healthcare-faq-section__question {
    font-size: 16px;
  }

  .healthcare-faq-section .healthcare-faq-section__answer {
    font-size: 15px;
  }
}

@media (max-width: 576px) {

  .healthcare-faq-section .healthcare-faq-section__heading {
    font-size: 28px;
  }


}

/* ===== FAQ Section Ends ==== */

@media (min-width: 1400px) {
  .ai-healthcare-section .container {
    margin-right: 0px !important;
    padding: 0;
    max-width: 92%;
  }

  .healthcare-scheduling-section .healthcare-scheduling-container {
    margin-right: 0px !important;
    padding: 0;
    max-width: 92%;
  }

}

@media (min-width: 1550px) {
  .ai-healthcare-section .container {
    margin-right: 0px !important;
    padding: 0;
    max-width: 86%;
  }

  .healthcare-scheduling-section .healthcare-scheduling-container {
    margin-right: 0px !important;
    padding: 0;
    max-width: 86%;
  }
}

@media (min-width: 1700px) {
  .ai-healthcare-section .container {
    margin-right: 0px !important;
    padding: 0;
    max-width: 85%;
  }

  .healthcare-scheduling-section .healthcare-scheduling-container {
    margin-right: 0px !important;
    padding: 0;
    max-width: 85%;
  }
}