        /* Navbar dropdown menu */
          .hcg-nav-list {
            top: 100%;
            left: 0;
            min-width: 180px;
            background: white;
            opacity: 0;
            transform: translateY(10px);
            pointer-events: none;
            transition: all 0.3s ease;
          }
          .hcg-nav-list a {
            display: block;
          }
          /* --- Show on hover AND focus (desktop) --- */
          .hcg-nav-item:hover .hcg-nav-list,
          .hcg-nav-item:focus-within .hcg-nav-list {
            color: #65bc45;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
          }
          .hcg-nav-item:hover .hcg-nav-link,
          .hcg-nav-item:focus-within .hcg-nav-link {
            color: #65bc45;
          }
          /* --- Mobile Toggle --- */
        @media (max-width: 991px) {
          .hcg-nav-list {
            position: static;
            opacity: 0;
            transform: scaleY(0);
            transform-origin: top;
            pointer-events: none;
            height: 0px;
            overflow: hidden;
            transition: all 0.3s ease;
          }
          .hcg-nav-list.show {
            opacity: 1;
            transform: scaleY(1);
            height: auto;
            pointer-events: auto;
          }
        }
        .hcg-nav-link-underline {
          opacity: 0;
          transition: opacity 0.3s ease;
        }
        .hcg-nav-item:hover .hcg-nav-link-underline,
        .hcg-nav-item:focus-within .hcg-nav-link-underline {
          opacity: 1;
        }

        /* ============================================ */
        /* ACCESSIBILITY: Hide duplicate navigation    */
        /* ============================================ */

        /* Hide desktop/tablet nav from keyboard on mobile 
        @media (max-width: 991px) {
          .desktop-view,
          .tablet-view {
            visibility: hidden !important;
          }
        }
          */

        /* Hide tablet nav from keyboard on desktop 
        @media (min-width: 992px) {
          .tablet-view {
            visibility: hidden !important;
          }
        }
          */

        /* Hide mobile navbar when closed - REMOVED: Was breaking Webflow's native menu toggle */
        /* Webflow handles this with transforms/display, no need to override with visibility */
        /*
        .hcg-navbar_menu:not(.w--open) {
          visibility: hidden;
        }
        .hcg-navbar_menu.w--open {
          visibility: visible;
        }
        */

        /* Hide sticky header from keyboard when not visible */
        .hcg-sticky-header:not(.is-visible) {
          pointer-events: none;
        }
        .hcg-sticky-header.is-visible {
          pointer-events: auto;
        }
        /* Nav menu CSS End */
        /* button hover css */
        .hcg-read-more-btn .hcg-arrow-icon {
          transition: transform 0.3s ease;
          transform: translateX(0);
        }
        .hcg-read-more-btn:hover .hcg-arrow-icon {
          transform: translateX(4px);
        }
        /* button hover css */
        /* News Card Responsive CSS */
        /* Default (desktop/tablet): Keep your existing grid styling */
        .hcg-news-cards-grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr); /* adjust based on your needs */
          gap: 24px;
        }
        /* News Card Responsive CSS */
        .hcg-hero_search-wrap {
          transform: translate(-50%, -50%);
        }
        .hcg-news-description-text {
          display: -webkit-box;
          -webkit-line-clamp: 2;   /* number of lines to show */
          -webkit-box-orient: vertical;
          overflow: hidden;
          text-overflow: ellipsis;
          word-break: break-word;
          overflow-wrap: break-word;
        }
        .hcg-carve-shape-bottom,
        .hcg-carve-shape-top,
        .hcg-feature-shape,
        .hcg-hero-shape {
          position: absolute;   
          left: 50%;       
          transform: translateX(-50%); 
          width: auto !important; 
          max-width: none !important;
        }
        @media (min-width: 991px) and (max-width: 1480px) {
          .hcg-hero-shape {
            height: 320px;
          }
          .hcg-hero_search-wrap {
            bottom: -132px;
          }
          .hcg-carve-shape-bottom {
              height: 300px;
              inset: -204px 0% auto;
              position: absolute;   /* Or relative if it's inside a layout that supports it */
              left: 50%;        /* Move to horizontal center */
              transform: translateX(-50%); /* Actually center it */
              width: auto !important; /* Prevent it from stretching */
              max-width: none !important; /* Remove Webflow's scaling */
          }
          .hcg-carve-shape-top {
              height: 300px;
              inset: -104px 0% auto;
              position: absolute;   /* Or relative if it's inside a layout that supports it */
              left: 50%;        /* Move to horizontal center */
              transform: translateX(-50%); /* Actually center it */
              width: auto !important; /* Prevent it from stretching */
              max-width: none !important; /* Remove Webflow's scaling */
          }
        }
        @media (min-width: 991px) and (max-width: 1340px){
          .hcg-hero-shape {
            height: 280px;
          }
          .hcg-hero_search-wrap {
            bottom: -150px;
          }
        }
        @media (min-width: 991px) and (max-width: 1320px){
          .hcg-container {
            padding-left: 24px;
            padding-right: 24px;
          }
          .hcg-nav-menu{
            gap: 20px;
          }
          .hcg-header {
            padding-left: 24px;
            padding-right: 24px;
          }
          .hcg-sticky-header {
            padding-left: 24px;
            padding-right: 24px;
          }
          .hcg-brand-logo {
            max-width: 236px;
          }
          .hcg-section_hero {
            min-height: 665px;
            padding-bottom: 200px;
          }
          .hcg-hero-shape {
            height: 260px;
          }
          .hcg-hero_search-wrap {
            bottom: -150px;
          }
          .hcg-hero-main {
            padding-bottom: .625rem;
          }
        }
        @media (min-width: 991px) and (max-width: 1092px){
          .hcg-nav-list-link,
          .hcg-nav-link {
            
          }
          .hcg-header_btns-group.margin-bottom {
            margin-bottom: 20px;
          }
          .hcg-brand-logo {
            max-width: 220px;
          }
          .hcg-hero-shape {
            height: 254px;
          }
          .hcg-hero_search-wrap {
            bottom: -156px;
          }
        }
        @media (min-width: 991px) and (max-width: 1172px){
          .hcg-bg-block {
            height: 174px;
            inset: -172px 0% auto;
          }
          .hcg-section_why-choose-us {
            padding-top: 32px;
          }
        }
        /* Mobile style */
        @media (max-width: 767px) {
          .hcg-news-cards-grid {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 24px;
          }
          .hcg-news-card {
            flex: 0 0 80%; /* Adjust size here */
            scroll-snap-align: start;
          }
          /* Optional smooth scrolling */
          .hcg-news-cards-grid::-webkit-scrollbar {
            display: none; /* Hide scrollbar for cleaner look */
          }
        }
        /* News Card Responsive CSS End */
        @media screen and (max-width: 360px) {
          .hcg-services-wrap.margin-xl-large {
            grid-template-columns: 1fr;
            gap: 1.25rem;
          }
        }


.hcg-service_icon-block svg {
  width: 86px;
  height: 86px;
  stroke-width: 1;
  color: #65BC45;
}
@media screen and (max-width: 479px) {
  .hcg-service_icon-block {
    width: 130px;
    height: 130px;
  }
  .hcg-service_icon-block svg {
    width: 66px;
    height: 66px;
  }
}
.hcg-welcome_left-block p {
  font-size: 18px;
  line-height: 1.66667;
  margin-bottom: 20px;
}
.hcg-welcome_left-block p:last-child {
  margin-bottom: 0;
}
.hcg-welcome_left-block p strong {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33333;
}
@media screen and (max-width: 767px) {
    .hcg-brand_logo-block {
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr;
        grid-auto-columns: 1fr;
        display: grid;
    }
}

.hcg-hero-video-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.fancybox__backdrop {
  background: rgba(0, 0, 0, 0.1) !important;
}

.form-input-message {
  justify-content: flex-start;
  align-items: center;
  min-height: 20px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  display: flex;
}

.form-input-message.error {
  color: #be274b;
}

.form-input-message.success {
  color: #1d7c4d;
}

.fim-icon {
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  display: flex;
}

.fim-text {
  line-height: 16px;
}

.flex-grow {
  flex-grow: 1;
}

input:has(+.form-input-message.error:not(.d-none)),
textarea:has(+.form-input-message.error:not(.d-none)){
  border-color: #be274b;
}

.hcg-filter-check.w--redirected-checked {
  background-repeat: no-repeat;
}

.d-none {
  display: none !important;
}

.thankyou-message .hcg-contact-form-heading-wrap{
  margin-bottom: 0;
}

.hcg-filter-check {
  min-width: 22px;
  min-height: 22px;
}
.hcg-filter-block {
  align-items: flex-start;
}

.hcg-filter-item .w-checkbox-input:has(+[name="serviceList[]"]:checked){
  background-color: var(--holmess-green);
  background-image: url(../images/check.svg);
  background-position: 50%;
  background-size: auto;
  border-style: none;
  margin-top: 0;
  background-repeat: no-repeat;
}
.hcg-filter-content-grid {
  display: flex;
  flex-wrap: wrap;
}
.hcg-filter-item .w-checkbox-input {
  cursor: pointer;
}
.hcg-ch-right-block {
  margin-top: -150px;
}
@media screen and (max-width: 991px) {
    .hcg-ch-right-block {
        margin-top: -150px;
    }
}
@media screen and (max-width: 767px) {
    .hcg-ch-right-block {
        margin-top: 0;
    }
}

.hcg-news-card-thumbnail {
  height: 200px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.hcg-block-builder .hcg-form-main-block .margin-medium {
    margin: 0 0 2rem 0 !important;
}
.hcg-input-items textarea,
.hcg-ch-input-items textarea {
  max-width: 100%;
  min-width: 100%;
}
.hcg-ch-details-block .hcg-block-builder .hcg-container {
    padding-left: 0;
    padding-right: 0;
}
.hcg-ch-details-block .bb-section-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.hcg-contact-input-item-wrap .flex-grow,
.hcg-ch-input-item-wrap .flex-grow {
  max-width: 100%;
}
@media screen and (max-width: 991px) {
    .hcg-sticky-footer {
        z-index: 10;
    }
}
.tdf-db-menu-item-link.active {
  background-color: var(--accent-bg-overlay);
}

@media (max-width: 991px) {
  .hcg-page-number-wrap {
    display: none;
  }
}

.hcg-section_inner-hero {
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .hcg-section_inner-hero {
    margin-bottom: 25px;
    border-radius: 0;
  }
}
.hcg-footer-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}
.hcg-inner-hero-heading {
  line-height: 1.2em;
}
.hcg-inner-hero-heading:last-child {
  margin-bottom: 0;
}

.hcg-ch-breadcrumb {
    padding-top: 12px;
    padding-bottom: 12px;
    min-height: 60px;
    display: flex;
    align-items: center;
}
@media (min-width: 1281px) {
  .hcg-ch-breadcrumb .hcg-container{
    max-width: 100%;
    padding-left: 47px;
    padding-right: 47px;
  }
}

.hcg-nav-link {
  display: inline-flex;
  line-height: 1.1;
  text-align: center;
}
.hcg-header-nav.tablet-view {
  display: none;
}
@media (max-width: 1100px) {
  .hcg-header-nav.desktop-view {
    display: none;
  }
  .hcg-header-nav.tablet-view {
    display: block;
    margin-top: 15px;
  }
  .hcg-header {
    padding-bottom: 10px;
  }
  .hcg-header-nav.tablet-view .hcg-nav-menu {
    display: flex;
    justify-content: space-between;
  }
}
.hcg-breadcrumb-wrapper {

}
.hcg-ch-contact-icon {
  width: 20px;
  height: 18px;
  align-items: center;
  justify-content: center;
}
.hcg-ch-contact-item {
  gap: 6px;
}
.hcg-ch-contact-item,
.hcg-ch-serice-list-item {
  font-family: "Public Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.hcg-ch-hero-block {
  padding-top: 35px;
}

.hcg-care-home-search-header {
  color: #383838;
  text-align: center;
  font-family: var(--font-family-Rethink-Sans, "Rethink Sans");
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: var(--line-height-3, 30px); /* 125% */
  margin-bottom: 32px;
}
.hcg-care-home-search-header span {
  color: #65BC45;
}
@media (max-width: 479px) {
  .footer-dot-hide {
    display: none;
  }
}
.hcg-hero-title {
  text-align: center;
}
.heading-style-h5[bb-title="Document Title"] {
  font-style: normal;
}


.hcg-footer-link,
.hcg-contact-info-link,
.hcg-footer a,
.hcg-breadcrumb-link {
    text-decoration: underline;
}
.hcg-footer-link:hover,
.hcg-contact-info-link:hover,
.hcg-footer a:hover,
.hcg-breadcrumb-link:hover {
    text-decoration: none;
}

.access-view-badge {
  display: none !important;
}
div.access-focus-target:has(>.access-view-badge) {
  cursor: default !important;
  
}
div.access-focus-target:has(>.access-view-badge):focus {
  outline: none !important;
}
[bb-system-name="bb_block_1020_1"] [bb-title="Sub Heading"].access-focus-target {
  cursor: default !important;
  outline: none !important;
}

.hcg-footer-link,
.hcg-copy-right-text a {
  font-weight: bold;
}
.hcg-search-banner.show {
  z-index: 9;
}
@media (max-width: 991px) {
  .hcg-navbar_menu.is-page-height-tablet {
  }
  .hcg-navbar_link-block {
    gap: 0;
  }
}

@media screen and (max-width: 479px) {
  .hcg-ch-hero-block {
    border-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  .hcg-map-block {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hcg-ch-map-section {
      display: block;
  }
  .map-wrapper {
    aspect-ratio: 4 / 3 !important;
    max-width: 100% !important;
  }
  .slider-controls {
    height: 40px;
    top: 37px;
  }
}

.bb-gallery-grid.bb-row-4-col {
  margin-bottom: 0 !important;
}
.hcg-inner-single-block {
  gap: 0;
}
#reading-progress-bar {
  z-index: 999 !important;
}
