/* HiCare-inspired theme overrides
   This file sits on top of the existing design system.
   IMPORTANT: We do NOT change your color palette here, only
   fonts, spacing, radiuses and subtle shadows. */

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    Arial, sans-serif;
}

/* Main header: light shadow + refined font, keep existing colors */
.header__area-menubar-area {
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 99;
}

.header__area-menubar-main-menu ul li a {
  font-weight: 500;
  font-size: 15px;
  text-transform: none;
}

.header__area-menubar-main-menu .sub-menu {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border-radius: 8px;
}

.header__area-menubar-main-menu .sub-menu li a {
  padding: 10px 18px;
  font-size: 14px;
}

/* Primary CTA button styled similar to HiCare "book now" buttons */
.theme-btn,
.theme-banner-btn2 {
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.theme-btn i,
.theme-banner-btn2 i {
  font-size: 12px;
}

.theme-btn:hover,
.theme-banner-btn2:hover {
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.32);
}

/* Hero carousel: remove hard edges */
.carousel.desktop img,
.carousel.mobile img {
  border-radius: 0;
}

/* Section wrappers */
.section-padding {
  padding-top: 20px;
  padding-bottom: 20px;
}

.services__area,
.about__area,
.chooseus__area,
.faq__area,
.quote__area,
.testimonial__area {
  background-color: var(--rpc-bg);
}

.services__area .container,
.about__area .container,
.faq__area .container,
.testimonial__area .container {
  background-color: transparent;
}

/* Titles similar to HiCare (thin subtitle + strong title) */
.subtitle-one {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.services__area-title-left h1,
.services__area-title-left h2,
.about__area-title-right h2,
.faq__area-right-title h2,
.testimonial__area-title h2 {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
}

/* Card-like service items (similar to HiCare package cards) */
.services__area-item {
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
  padding: 18px 18px 20px;
}

.services__area-item h3 a {
  font-size: 16px;
}

.services__area-item p {
  font-size: 14px;
}

.quote__area h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.testimonial__area-item {
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .header__area-topbar-area {
    padding: 4px 15px 0 15px;
  }

  .section-padding {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .services__area-title-left h1,
  .services__area-title-left h2,
  .about__area-title-right h2 {
    font-size: 22px;
  }
}


