* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Header Styles - Fixed version */
/* =============== HEADER =============== */

.containerheader {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  /* border-bottom: 1px solid var(--color-neutral-200, #e5e7eb); */
}

.offcanvas-backdrop.show {
  opacity: .8;
}

.site-header .header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header .brand img {
  height: 72px;
}

/* Toggle */
.site-header .nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header .nav-toggle .bar {
  width: 26px;
  height: 2px;
  background: var(--color-neutral-900, #0f172a);
}

@media (min-width: 992px) {
  .site-header .nav-toggle {
    display: none;
  }
}

/* Nav shell */
.site-header .primary-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 80px;
  background: #fff;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border-bottom: 1px solid var(--color-neutral-200, #e5e7eb);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.site-header .primary-nav.open {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 992px) {
  .site-header .primary-nav {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    background: transparent;
  }
}

.site-header .lang-dropdown .dropdown-item.active,
.site-header .dropdown-item:active {
  color: var(--color-neutral-100);
  text-decoration: none;
  background-color: #18181b;
}

.site-header .design-issue a:hover {
  background: var(--color-neutral-100) !important;
  color: #18181b !important;
}

/* Backdrop + scroll lock */
.site-header .nav-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 80px;
  bottom: 0;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

@media (max-width: 991.98px) {
  body.nav-open {
    overflow: hidden;
  }

  .primary-nav.open~.nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Nav list */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

@media (max-width: 991.98px) {
  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Links */

.navforgaplink {
  gap: 35px;
  margin: 10px 10px 0px 0px;
}

.site-header .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-black, #000000);
  font-weight: var(--font-weight-400);
  background: transparent;
}

.site-header .nav-link:hover {
  background: var(--color-white, #FFFFFF);
}

.site-header .nav-link.active {
  font-weight: var(--font-weight-400);
  color: var(--color-primary, #1EA859);
}

.site-header .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 3px;
  background: var(--color-primary, #1EA859);
  width: 100%;
}

/* Mega menu */
.has-mega {
  position: static;
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  background: #fff;
  border-top: 1px solid var(--color-neutral-200, #e5e7eb);
  padding: 24px 0;
  display: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Desktop: open on hover */
@media (min-width: 992px) {
  .has-mega:hover>.mega {
    display: block;
  }
}

/* Mobile: open when <li> has .open */
@media (max-width: 991.98px) {
  .mega {
    position: static;
    display: none;
    padding: 8px 8px 16px;
    border-top: 1px dashed var(--color-neutral-200, #e5e7eb);
    box-shadow: none;
    background: transparent;
  }

  .has-mega.open>.mega {
    display: block;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mega-title {
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 18px;
  color: var(--color-neutral-900, #0f172a);
}

.mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-list a {
  display: block;
  padding: 8px;
  border-radius: 8px;
  color: var(--color-neutral-700, #374151);
  text-decoration: none;
}

.mega-list a:hover {
  background: var(--color-neutral-100, #f3f4f6);
}

/* Buttons (fallbacks if your guide doesn't define them) */
/* .btn{ display:inline-flex; align-items:center; gap:8px; padding:.6rem 1rem; border-radius:10px; font-weight:700; text-decoration:none; border:1px solid transparent; }
.btn-primary{ background: var(--color-primary, #e11d48); color:#fff; border-color: var(--color-primary, #e11d48); }
.btn-primary:hover{ background: var(--color-primary-700, #be123c); border-color: var(--color-primary-700, #be123c); }
.btn-outline{ background:#fff; color: var(--color-neutral-900, #0f172a); border-color: var(--color-neutral-300, #d1d5db); }
.btn-outline:hover{ background: var(--color-neutral-100, #f3f4f6); } */

/* Mega menu */
.has-mega {
  position: static;
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  background: #fff;
  border-top: 1px solid var(--color-neutral-200, #e5e7eb);
  padding: 24px 0;
  display: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Desktop: open on hover */
@media (min-width: 992px) {
  .has-mega:hover>.mega {
    display: block;
  }
}

/* Mobile: open when <li> has .open */
@media (max-width: 991.98px) {
  .mega {
    position: static;
    display: none;
    padding: 8px 8px 16px;
    border-top: 1px dashed var(--color-neutral-200, #e5e7eb);
    box-shadow: none;
    background: transparent;
  }

  .has-mega.open>.mega {
    display: block;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mega-title {
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 18px;
  color: var(--color-neutral-900, #0f172a);
}

.mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-list a {
  display: block;
  padding: 8px;
  border-radius: 8px;
  color: var(--color-neutral-700, #374151);
  text-decoration: none;
}

.mega-list a:hover {
  background: var(--color-neutral-100, #f3f4f6);
}

/* Buttons (fallbacks if your guide doesn't define them)*/
/*.btn{ display:inline-flex; align-items:center; gap:8px; padding:.6rem 1rem; border-radius:10px; font-weight:700; text-decoration:none; border:1px solid transparent; }
.btn-primary{ background: var(--color-primary, #e11d48); color:#fff; border-color: var(--color-primary, #e11d48); }
.btn-primary:hover{ background: var(--color-primary-700, #be123c); border-color: var(--color-primary-700, #be123c); }
.btn-outline{ background:#fff; color: var(--color-neutral-900, #0f172a); border-color: var(--color-neutral-300, #d1d5db); }
.btn-outline:hover{ background: var(--color-neutral-100, #f3f4f6); } */

/* Base nav */
.site-header .nav-link {
  font-weight: var(--font-weight-400);
  font-style: regular;
  font-size: 15px;
  color: var(--color-black);
  font-family: var(--font-family-base);
}

.site-header .nav-link:hover {
  color: var(--color-primary);
}

.site-header .bi-chevron-down {
  font-size: 13px;
  transform: translateY(-1px);
  color: var(--Neutral-5);
}

/* Mega dropdown shell */
.mega-wrap .dropdown-menu {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.12);
  margin-top: 0;
}

.mega-dd {
  min-width: 400px;
}

.mega-inner {
  padding-left: 20px;
  padding-right: 20px;
}

.mega-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 18px;
}

@media (min-width: 1028px) and (max-width: 1440px) {
  .mega-dd-12-sc {
    min-width: 400px;
  }
}

/* Items */
.mega-item {
  display: flex !important;
  align-items: flex-start;
  gap: 5px;
  padding: 6px 0 !important;
  color: #0f172a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.mega-item span {
  display: inline-block;
  line-height: 1.3;
}

.mega-item-icon {
  width: 18px;
  height: 18px;
  margin-bottom: 2.9px;
}

.mega-item:hover {
  opacity: 0.85;
}

.mega-item i {
  font-size: 20px;
  line-height: 1;
  margin-top: 2px;
}

/* Icon colors (green for Buy, blue for Rent) – use your tokens if defined */
.icon-buy {
  color: var(--color-green-700, #0e9f6e);
}

.icon-rent {
  color: var(--color-blue-600, #2563eb);
}

.site-header .navbar-brand img {
  height: 84px;
  object-fit: cover;
}

/* ---------- Desktop hover open ---------- */
@media (min-width: 992px) {
  .mega-wrap:hover>.dropdown-menu {
    display: block;
  }

  .mega-wrap .dropdown-toggle:after {
    display: none;
  }

  /* hide Bootstrap carets */
}

/* ---------- Mobile offcanvas ---------- */
.m-header-menu {
  --bs-offcanvas-width: 360px;
}

.offcanvas.m-header-menu {
  left: 0;
}

@media (max-width: 575.98px) {
  .m-header-menu {
    --bs-offcanvas-width: 100vw;
    border-radius: 0;
  }

  .navbar-brand img {
    height: 64px;
  }
}

.m-header-menu .menu-logo {
  height: 64px;
}

.m-header-menu .m-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 15px;
  color: #0f172a;
  text-decoration: none;
  font-weight: 400;
  font-family: var(--font-family-base);
}

.m-header-menu .m-item.active {
  color: var(--color-primary);
  font-weight: 400;
}

.m-header-menu .m-item i {
  font-size: 18px;
  color: #1f2937;
}

/* Desktop header right */
.site-header .btn-link {
  font-size: 20px;
  font-weight: 400 !important;
  text-decoration: none;
  padding: 0;
  min-width: 0px !important;
}

.site-header .btn .bi {
  font-size: 16px;
}

.site-header .menu-open-btn .bi {
  font-size: 28px;
}

.site-header .navbar-brand img {
  height: 84px;
  object-fit: cover;
}

/* Icon circle style */
/* Icon circle */
.top-link i {
  width: 34px;
  height: 34px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* SVG image default state */
.top-link i img {
  width: 14px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(38%) sepia(78%) saturate(400%) hue-rotate(85deg) brightness(95%) contrast(90%);
}

/* Link layout */
.top-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-black);
  text-decoration: none;
  font-size: 17px;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-400);
}

.top-link:hover{
  color: var(--color-primary);
}

.contactpagelink:hover{
  color: var(--color-primary) !important;
}

/* Hover: green background + white SVG */
.top-link:hover i {
  background-color: var(--color-primary);
}

.top-link:hover i img {
  filter: brightness(0) saturate(100%) invert(100%);
}


@media (min-width: 992px) and (max-width: 1027px) {
  .navforgaplink {
    gap: 20px;
    margin: 5px 5px 0px;
  }
}

/* Mobile layout adjustment */
@media (max-width: 991.98px) {

  .site-header .navbar-brand img {
    height: 65px;
    object-fit: cover;
  }

  .top-bar .container {
    justify-content: space-between;
  }

  .top-bar .d-flex.gap-4 {
    width: 100%;
    justify-content: space-between;
  }

  .top-link {
    font-size: 14px;
  }

  .containerheader {
    padding: 0 5px;
  }

}


/* Footer Section */

/* Content */
.footer-content {
  position: relative;
  z-index: 2;
  padding-top: 230px;
  margin-top: 65px;
}


/* Lists */
.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 8px;
  font-size: 14px;
  font-family: var(--font-family-montserrat);
  font-weight: var(--font-weight-400);
  color: var(--color-gray);
}

.footer-list li a {
  color: var(--color-gray);
  text-decoration: none;
}
.footer-list li a:hover{
color: var(--color-primary);

}

.contactlist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer-contact-logo {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;

}


/* Newsletter */
.newsletter-box {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-gray);
  position: relative;
}

.newsletter-icon {
  display: flex;
  align-items: center;
  margin-right: 6px;
}

.footer-contact-logoemail {
  width: 19px;
  height: 15px;
}

.newsletter-box input {
  border: none;
  background: transparent;
  flex: 1;
  padding: 6px 4px;
  outline: none;
  font-size: 14px;
}

.newsletter-box input::placeholder {
  font-size: 14px;
  color: var(--color-Grays-gray) !important;
  font-family: var(--font-family-montserrat);
  font-weight: var(--font-weight-400);
}

.newsletter-box button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}


/* Bottom bar */

.footer-bottom {
  border-top: 1px solid var(--color-Grays-gray);
  margin-top: 15px;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: var(--color-gray);
  font-family: var(--font-family-montserrat);
  font-weight: var(--font-weight-600);
}


/* Footer logo */
.footer-logo {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.footer-logo img {
  width: 160px;
  height: 178px;
}

.curve-section {
  position: relative;
  height: auto;
  /* background: #f7f9f8; */
  background-image: url(../images/Group\ 36717.jpg);
  /* top background */
  overflow: hidden;
}

.curve-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: #e6f7ef;
  /* light green */
  clip-path: polygon(0 30%,
      50% 0,
      100% 30%,
      100% 100%,
      0 100%);
}

@media (min-width: 992px) and (max-width: 1027px) {
  .footer-logo img {
    width: 130px;
    height: 148px;
  }
}

/* Mobile layout adjustment */
@media (min-width: 768px) and (max-width: 991.98px) {

  .footer-content {
    padding-top: 260px;
    margin-top: 45px;
  }

  .footer-logo img {
    width: 130px;
    height: 148px;
  }


  .curve-section::before {
    width: 100%;
    height: 90%;

  }

  /* Footer logo */
  .footer-logo {
    position: absolute;
    top: 45px;
  }


}

@media (max-width: 767.98px) {

  .footer-content {
    padding-top: 170px;
    margin-top: 0px;
  }

  /* Footer logo */
  .footer-logo {
    position: absolute;
    top: 35px;
  }

  .footer-logo img {
    width: 100px;
    height: 120px;
  }

  .curve-section::before {
    width: 100%;
    height: 90%;
    clip-path: polygon(0 0,
        50% 0,
        100% 0,
        100% 100%,
        0 100%);

  }


}

/* Hero Slide */
#heroCarousel .hero-slide {
  min-height: 700px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay */
#heroCarousel .hero-overlay {
  min-height: 700px;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
}


#heroCarousel .carousel-control-next,
#heroCarousel .carousel-control-prev {
  opacity: 1;
  width: 5%;
}

/* Responsive */
@media (max-width: 991px) {
  #heroCarousel .banner-heading {
    font-size: 40px;
  }
}



/* Responsive */
@media (max-width: 767px) {
  #heroCarousel .banner-heading {
    font-size: 34px;
  }

  #heroCarousel .hero-slide {
    min-height: 550px;
  }

  /* Overlay */
  #heroCarousel .hero-overlay {
    min-height: 550px;
  }

  #heroCarousel .hero-subtitle {
    font-size: 16px;
  }

  #heroCarousel .carousel-control-next,
  #heroCarousel .carousel-control-prev {
    display: none !important;
  }

}


@media (min-width: 1200px) {

  #heroCarousel .hero-slide {
    min-height: 590px;
  }

  /* Overlay */
  #heroCarousel .hero-overlay {
    min-height: 590px;
  }



}



/* Section 1 */

.services-section-class {

  margin-top: -75px;
  position: relative;

}

#Services-section .service-card {
  background: #fff;
  padding: 30px 30px;
  border-radius: 20px;
  border-bottom-right-radius: 0px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  height: 100%;
}

#Services-section .service-card:hover {
  transform: translateY(-5px);
}

#Services-section .icon-box {
  width: 50px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-right: 30px;
}

#Services-section .icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Section 2 */

#gallery-section .card-box {
  position: relative;
  overflow: hidden;
  /* border-radius: 20px; */
}

#gallery-section .card-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.4s ease;
}

#gallery-section .card-box .imgtop1 {
  width: 100%;
  height: 180px;
  border-radius: 40px;
  border-top-right-radius: 0;

}

#gallery-section .card-box .imgtop1:hover {
  transform: scale(1.1);
}

#gallery-section .card-box .imgtop2 {
  width: 100%;
  height: 325px;
  border-radius: 40px;
  border-top-left-radius: 0;
}

#gallery-section .card-box .imgtop2:hover {
  transform: scale(1.1);
}

#gallery-section .card-box .imgtop3 {
  width: 100%;
  height: 240px;
  border-radius: 40px;
  border-bottom-left-radius: 0;

}

#gallery-section .card-box .imgtop3:hover {
  transform: scale(1.1);
}

#gallery-section .card-box .imgright {
  width: 100%;
  height: 425px;
  border-radius: 40px;
  border-top-right-radius: 0;

}

#gallery-section .card-box .imgright:hover {
  transform: scale(1.1);
}

#gallery-section .card-box .imgbotm1 {
  width: 100%;
  height: 190px;
  border-radius: 40px;
  border-bottom-right-radius: 0;

}

#gallery-section .card-box .imgbotm1:hover {
  transform: scale(1.1);
}

#gallery-section .card-box .imgbotm2 {
  width: 100%;
  height: 320px;
  border-radius: 40px;
  border-top-left-radius: 0;

}

#gallery-section .card-box .imgbotm2:hover {
  transform: scale(1.1);
}

/* Overlay */
#gallery-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 168, 89, 0.83);
  color: #fff;

  display: flex;
  flex-direction: column;

  padding: 30px 20px 20px;
  opacity: 0;
  transition: 0.4s ease;

  /* 👇 IMPORTANT */
  overflow-y: auto;
  /* enable vertical scroll */
  scrollbar-width: thin;
  /* for Firefox */
}

/* #gallery-section .overlay::-webkit-scrollbar {
  width: 6px;             
} */

#gallery-section .cardbtn {
  margin-top: 10PX;
}

/* Hover Effect */
/* #gallery-section .card-box:hover img {
  transform: scale(1.1);
}

#gallery-section .card-box:hover .overlay {
  opacity: 1;
} */

@media (max-width: 992px) {

  #gallery-section .card-box .imgtop1 {
    width: 100%;
    height: 240px;


  }

  #gallery-section .card-box .imgtop2 {
    width: 100%;
    height: 240px;

  }

  #gallery-section .card-box .imgtop3 {
    width: 100%;
    height: 240px;


  }

  #gallery-section .card-box .imgright {
    width: 100%;
    height: 240px;

  }

  #gallery-section .card-box .imgbotm1 {
    width: 100%;
    height: 240px;


  }

  #gallery-section .card-box .imgbotm2 {
    width: 100%;
    height: 240px;
    ;
  }
}

@media (max-width: 767.98px) {
  #gallery-section .overlay {
    padding: 20px 10px 10px;
  }
}

#health-care-section {

  margin-top: 60px;
  margin-bottom: 0px;
}

/* Card Main */
#health-care-section .custom-card {
  background: #fff;
  border-radius: 20px;
  border-bottom-right-radius: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  overflow: visible;
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
}

#health-care-section .custom-card:hover {
  transform: translateY(-10px);
  transition: 0.4s ease;
}

/* Image */
#health-care-section .card-img-wrapper {
  padding-right: 15px;
  padding-left: 15px;
  margin-top: -70px;
  width: 100%;
  height: 254px;
}

#health-care-section .card-img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border-bottom-right-radius: 0;
  display: block;
  object-fit: cover;

}

/* Content */
#health-care-section .card-body-custom {
  padding: 20px 20px 15px;
}





#health-care-section .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Responsive */
@media (min-width: 768px) and (max-width: 991px) {
  #health-care-section .card-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 100px;
  }

  #health-care-section .card-grid .custom-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 333px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  #health-care-section .card-grid {
    grid-template-columns: 1fr;
    row-gap: 100px;

  }
}


/* Domiciliary Care */

.domicilary-care-row-padding {
  padding-top: 70px;
  padding-bottom: 140px;
}


@media (max-width: 991.98px) {
  .domicilary-care-row-padding {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}



/* Join Hands Section */
#join-hand-section {
  margin-top: -90px;

}

#join-hand-section .join-hand-img {
  width: 100%;
  height: 620px;
}

#join-hand-section .join-hand-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  border-bottom-right-radius: 0;
}

@media (max-width: 991.98px) {

  /* Join Hands Section */
  #join-hand-section {
    margin-top: 0px;

  }

  #join-hand-section .join-hand-img {
    height: 100%;
  }


}

/* Frequently Asked Questions Section */

#frequently-asked-section .map-section {
  position: relative;

}

#frequently-asked-section .map-section iframe {
  width: 100%;
  height: 430px;
  border: 0;
}

/* Floating card */
#frequently-asked-section .map-card {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #fff;
  padding: 20px;
  max-width: 280px;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

#frequently-asked-section .map-card h5 {
  color: var(--color-primary);
  font-weight: 600;
}

#frequently-asked-section .map-card p {
  font-size: 14px;
  color: #555;
}

#frequently-asked-section .map-links a {
  text-decoration: none;
  font-size: 14px;
}

#frequently-asked-section .map-links .direction {
  color: #0d6efd;
}

/* Accordions */

#frequently-asked-section .faq-section {
  background: transparent;
  padding: 10px;

}

/* Remove default Bootstrap styles */
#frequently-asked-section .custom-accordion {
  border: none;
  border-bottom: 1px solid #D9D9D9;
  background: transparent;
  border-radius: 0 !important;
}

#frequently-asked-section .accordion-item:first-child {
  border-top: 5px solid var(--color-primary);
  border-radius: 0 !important;
}

#frequently-asked-section .accordion-button {
  background: transparent;
  box-shadow: none !important;
  font-family: var(--font-family-base);
  font-size: 18px;
  font-weight: var(--font-weight-600);
  padding: 32px 0 32px;
}

/* Remove default arrow */
#frequently-asked-section .accordion-button::after {
  display: none;
}


#frequently-asked-section .accordion-button::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 18px;
  display: inline-block;
  background-image: url('../images/plus.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}

/* When open */
#frequently-asked-section .accordion-button:not(.collapsed)::before {
  background-image: url('../images/minus.svg');
}

/* Active (opened) title color */
#frequently-asked-section .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  background-color: transparent;
  font-family: var(--font-family-base);
  font-size: 18px;
  font-weight: var(--font-weight-600);
  color: var(--color-primary);
  padding-bottom: 20px;

}

#frequently-asked-section .accordion-body {
  padding-top: 0px;
  padding-left: 30px;
}

/* PAGE */

.contact-section-banner-class {
  position: relative;
  height: 370px;
  display: flex;
  align-items: center;
  /* Vertical center */
  justify-content: center;
  /* Horizontal center */
  text-align: center;
  color: #fff;
}

/* Overlay */
.contact-section-banner-class::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Adjust opacity here */
  z-index: 1;

}

/* Content above overlay */
#contact-banner .banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  /* Control width here */
  width: 100%;
  padding: 0 15px;
  /* Prevent text touching edges on small screens */
  margin: 0 auto;
  margin-bottom: 55px;
}

@media (max-width: 768px) {
  #contact-banner .banner-heading {
    font-size: 35px;
    font-weight: 700;
  }

  .contact-section-banner-class {

    height: 290px;
  }


}


/* Section 2 */

.contact-section-form-class {
  margin-top: -60px;
  position: relative;
  z-index: 11;
  padding-bottom: 70px;

}

#contact-section-form .contact-card {
  background: #fff;
  border-radius: 30px;
  padding: 50px;
  border-bottom-right-radius: 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}



/* Icon Box */
#contact-section-form .icon-box {
  width: 75px;
  height: 76px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 20px;
  border-bottom-right-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-right: 25px;
}

/* Form */
#contact-section-form .form-control {
  border-radius: 6px;
  padding: 10px;
  border: 1px solid #AFBACA;
}

#contact-section-form .form-control::placeholder {
  color: #8897AE !important;
  font-weight: var(--font-weight-500);
  font-size: 14px;
}

#contact-section-form .form-control:focus {
  border-color: none;
  box-shadow: none !important
}

#contact-section-form textarea.form-control {
  resize: none;
}

#contact-section-form .btn-success {
  background: var(--color-primary);
  border: none;
  padding: 18px;
  border-radius: 10px;
  border-bottom-right-radius: 0px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* spacing between text & icon */
  transition: all 0.6s ease;
}

/* Icon Styling */
#contact-section-form .btn-success i {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s ease;
}

#contact-section-form .btn-success:hover {
  transform: translateX(6px);
  transition: all 0.6s ease;
}

/* Hover effect (optional but matches modern UI) */
#contact-section-form .btn-success:hover i {
  transform: translateX(4px);
}


@media (min-width: 992px) and (max-width: 1027px) {
  #contact-section-form .contact-card {

    padding: 25px;

  }

  #contact-section-form .icon-box {
    margin-right: 16px;
  }

}

@media (min-width: 768px) and (max-width: 991.98px) {
  #contact-section-form {
    padding-bottom: 40px;
  }

  /* #contact-section-form .contact-card {
    
    padding: 25px;
   
}
#contact-section-form .icon-box{
  margin-right: 16px;
} */

}

@media (max-width: 767.98px) {
  #contact-section-form .contact-card {

    padding: 15px;

  }

  #contact-section-form .icon-box {
    margin-right: 12px;
  }

  #contact-section-form .icon-box {
    width: 65px;
    height: 60px;
  }

  #contact-section-form {
    margin-top: -40px;
    padding-bottom: 30px;
  }
}


#map-section-contact .map-section {
  position: relative;

}

#map-section-contact .map-section iframe {
  width: 100%;
  height: 635px;
  border: 0;
}


/* Page About Us */

@media (min-width: 992px) {

  .containerheader-usein-pages {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;

  }
}

#health-care-section-about-us {
  margin-top: 0px;
  margin-bottom: 0px;
}

/* Card Main */
#health-care-section-about-us .custom-card {
  background: #fff;
  border-radius: 20px;
  border-bottom-right-radius: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  overflow: visible;
  position: relative;
  height: 100%;
  transition: all 0.3s ease;

}

#health-care-section-about-us .row>div {
  margin-top: 130px;
}

#health-care-section-about-us .custom-card:hover {
  transform: translateY(-10px);
  transition: 0.4s ease;
}

/* Image */
#health-care-section-about-us .card-img-wrapper {
  padding-right: 15px;
  padding-left: 15px;
  margin-top: -70px;
  width: 100%;
  height: 254px;
}

#health-care-section-about-us .card-img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border-bottom-right-radius: 0;
  display: block;
  object-fit: cover;

}

/* Content */
#health-care-section-about-us .card-body-custom {
  padding: 20px 20px 15px;
}

@media (max-width: 767px) {
  #health-care-section-about-us .row>div {
    margin-top: 100px;
  }
}



/* work For Us */


/* #work-for-us-section-1 {
  margin-top: -90px;

} */

#work-for-us-section-1 .join-hand-img {
  width: 100%;
  height: 435px;
}

#work-for-us-section-1 .join-hand-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  border-bottom-right-radius: 0;
}

@media (max-width: 991.98px) {


  #work-for-us-section-1 .join-hand-img {
    height: 100%;
  }


}


/* Section-2 */

#care-burry {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Card Main */
#care-burry .custom-card {
  background: #fff;
  border-radius: 20px;
  border-bottom-right-radius: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  overflow: visible;
  position: relative;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  padding: 30px 15px;

}

#care-burry .custom-card:hover {
  transform: translateY(-10px);
  transition: 0.4s ease;
}

/* Content */


/* Icon Box */
#care-burry .icon-box {
  width: 75px;
  height: 76px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 20px;
  border-bottom-right-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;

}

.line-green {
  width: 30%;
  height: 4px;
  background: var(--color-primary);
  margin: 14px auto;
  border: none !important;
  opacity: 1;
}

@media (max-width: 991.98px) {


  #care-burry {
    margin-top: 30px;
    margin-bottom: 0px;
  }


}

#care-burry .custom-select-box {
  position: relative;
}

#care-burry .custom-select-box select {
  height: 62px;
  border: 2px solid #bdbdbd;
  border-radius: 0;
  font-size: 18px;
  padding: 10px 45px 10px 20px;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none;
}

/* Focus effect */
#care-burry .custom-select-box select:focus {
  border-color: #000;
  box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
  #care-burry .custom-select-box select {
    height: 55px;
    font-size: 16px;
  }
}

/* Page Domiciliary */

#domiciliary-section-1 .join-hand-img {
  width: 100%;
  height: 321px;
}

#domiciliary-section-1 .join-hand-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  border-bottom-left-radius: 0;
}

@media (max-width: 991.98px) {


  #work-for-us-section-1 .join-hand-img {
    height: 100%;
  }


}

    #domiciliary-list-section .custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#domiciliary-list-section .custom-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}

/* Green square bullet */
#domiciliary-list-section .custom-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  position: absolute;
  left: 0;
  top: 9px;
  border-radius: 1px;
}

/* Support Living */

#supported-living-section-1 .join-hand-img {
  width: 100%;
  height: 424px;
}

#supported-living-section-1 .join-hand-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  border-bottom-right-radius: 0;
}

#supported-living-section-2 .join-hand-img {
  width: 100%;
  height: 458px;
}

#supported-living-section-2 .join-hand-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  border-bottom-right-radius: 0;
}


/* Listed Vacancies Section */

      #listed-vacancies-section .custom-select-box {
        position: relative;
      }

     #listed-vacancies-section .custom-select-box select {
        height: 62px;
        border: 2px solid #bdbdbd;
        border-radius: 0;
        font-size: 18px;
        padding: 10px 45px 10px 20px;
        background-color: #fff;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        box-shadow: none;
      }


      /* Focus effect */
      #listed-vacancies-section .custom-select-box select:focus {
        border-color: #000;
        box-shadow: none;
      }

      /* Responsive */
      @media (max-width: 768px) {
        #listed-vacancies-section .custom-select-box select {
          height: 55px;
          font-size: 16px;
        }
      }


      .awsm-job-container{
        background: #fff !important;
    border-radius: 30px !important;
    padding: 50px !important;
    border-bottom-right-radius: 0px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    margin: 80px auto 20px !important;
}

.awsm-job-form-control{
  display: block !important;
    width: 100% !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5  !important;
    color: var(--bs-body-color) !important;
    -webkit-appearance: none !important;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg) !important;
    background-clip: padding-box !important;
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
    border-radius: var(--bs-border-radius) !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out  !important;

    border-radius: 6px !important;
    padding: 10px !important;
    border: 1px solid #AFBACA !important;
}
.awsm-job-form-inner {
    background: #fff;
    border: none !important;
     padding:0px !important;
}

.awsm-application-submit-btn{
    font-weight: 700 !important;
    font-size: 14px !important;
color: white;
    background: var(--color-primary);
    border: none;
    padding: 18px;
    border-radius: 10px;
    border-bottom-right-radius: 0px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.6s ease;
    width: 100%;
}

.awsm-grid-item:hover{
transform: translateY(-5px);
}

@media (max-width: 767px) {
.awsm-application-submit-btn {
    font-size: 13px !important; 
    padding: 14px;
    margin-top: 60px;
}
}

.footer-bottom .company_link{
  color: var(--color-primary);
  text-decoration: none;

}

.footer-bottom .company_link:hover{
  color: var(--color-gray);
}
.top-link .bi-youtube{
  color: var(--color-primary) !important;
}

.top-link .bi-youtube:hover{
  color: var(--color-white) !important;
}
