/* bundled source: assetsUi/assets1/css/nav.css */
.green-underline::after {
  content: "";
  /* background-image: url(../images/nav/active-link/underline.svg); */
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 100%;
  background: #58b4c4;
  left: 0;
  right: 0;
  z-index: 52;
  width: 0%;
  height: 3px;
  transition: width 0.3s ease-in-out;
}

.navbar.shadow-bottom {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1); /* bottom-only shadow */
}

/* Apply Poppins Regular to the paragraph */
p {
  font-weight: 400; /* Regular */
  font-size: 22px;
  color: #4d4d4d; /* Darker Gray */
}

.nav-link.active > .green-underline::after,
.nav-link:hover > .green-underline::after,
.nav-link:focus > .green-underline::after {
  width: 100%;
}

.search-container {
  position: relative;
  min-width: 200px;
}

#search-input {
  width: 0;
  height: 48px; /* matches your min-h-48px */
  padding: 8px 36px 8px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: width 0.3s ease-in-out, border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

/* Expand + show custom focus ring (rounded) */
#search-input:focus,
#search-input:focus-visible {
  width: 100%;
  border-color: #58b4c4;
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(88, 180, 196, 0.25);
}

#search-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}

.navbar {
  height: 122px;
  min-height: 122px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.navbar .container-fluid {
  height: 100%;
}

.navbar .navbar-brand,
.navbar .offcanvas-body,
.navbar .btn,
.navbar .nav-link {
  display: flex;
  align-items: center;
}

/* Desktop layout (unchanged) */
@media (min-width: 992px) {
  .navbar .offcanvas-body {
    display: flex;
    justify-content: center;
    align-items: center;

  }

  .navbar .offcanvas-body .navbar-nav {
    justify-content: center;
    flex: 0 auto;
  }
  .search-form-container {
  right: auto !important;
}

}

/* Mobile layout */
@media (max-width: 991.98px) {
  .navbar .offcanvas-body {
    display: block;
    padding: 1rem 1rem 1.25rem;
  }

  .navbar .offcanvas-body .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .navbar .nav-item {
    padding: 0.25rem 0;
  }

  .navbar .nav-link {
    padding: 0.75rem 0;
  }

  .navbar .nav-link .green-underline {
    display: inline-block;
  }

  .search-form-container {
    width: 100%;
    margin-top: 0.5rem;
  }

  .search-container {
    width: 100%;
    position: relative;
  }

  #search-input {
    width: 100%; /* expanded on mobile */
    height: 48px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  #search-input:focus,
  #search-input:focus-visible {
    border-color: #58b4c4;
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(88, 180, 196, 0.25);
  }

  #search-icon {
    right: 12px;
  }

  .navbar a.btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 0.75rem;
  }
}
/* Tablet only: 992px–1199.98px (iPad Pro portrait included) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* keep overall height tidy */
  .navbar { height: 110px; min-height: 110px; }

  /* offcanvas feels like a proper menu on tablets */
  .offcanvas.offcanvas-end {
    width: 420px;             /* comfy width for tablets */
    max-width: 85vw;
  }

  /* stack nav like mobile, but with your tablet spacing */
  .navbar .offcanvas-body {
    display: block;
    padding: 1rem 1rem 1.25rem;
  }

  .navbar .offcanvas-body .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .navbar .nav-item { padding: 0.25rem 0; }
  .navbar .nav-link { padding: 0.75rem 0; }
  .navbar .nav-link .green-underline { display: inline-block; }

  /* tablet search: full width like mobile */
  .search-form-container { width: 100%; margin-top: 0.5rem; }
  .search-container { width: 100%; position: relative; }

  #search-input {
    width: 100%;
    height: 48px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  #search-input:focus,
  #search-input:focus-visible {
    border-color: #58b4c4;
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(88, 180, 196, 0.25);
  }

  #search-icon { right: 12px; }

  /* CTA button full width like mobile for easier tapping */
  .navbar a.btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 0.75rem;
  }
}
/* ---- Shrink navbar: put this after your other CSS ---- */
.navbar {
  transition: height 200ms ease, min-height 200ms ease, padding 200ms ease, box-shadow 200ms ease;
  /* keep your original default but allow override */
  height: 122px !important;
  min-height: 122px !important;
}

/* Shrunk state */
.navbar.shrink {
  height: 86px !important;
  min-height: 86px !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  /* optional subtle background to avoid transparency jump */
  background-color: rgba(255,255,255,0.98);
}

/* logo shrink + smooth transition */
.navbar .navbar-brand img {
  transition: transform 200ms ease;
  transform-origin: left center;
}

/* logo smaller in shrunk state */
.navbar.shrink .navbar-brand img {
  transform: scale(0.82);
}

/* Minor adjustments to nav items when shrunk (optional) */
.navbar.shrink .nav-link,
.navbar.shrink .btn,
.navbar.shrink .navbar-brand {
  transform: translateY(-2px);
  transition: transform 200ms ease;
}

/* Mobile/tablet tweaks so shrink is gentler */
@media (max-width: 991.98px) {
  .navbar { height: 100px !important; min-height: 100px !important; }
  .navbar.shrink { height: 72px !important; min-height: 72px !important; }
  .navbar.shrink .navbar-brand img { transform: scale(0.90); }
}


/* bundled source: assetsUi/assets1/css/font.css */
.h-fs-12 {
  font-size: 12px;
}
.h-fs-14 {
  font-size: 14px;
}
.h-fs-16 {
  font-size: 15px !important;
}

.h-fs-18 {
  font-size: 16px !important;
}
@media only screen and (max-width: 678px) {
  .h-fs-18 {
    font-size: 15.5px !important;
  }
}

.h-fs-22 {
  font-size: 18px !important;
}
@media only screen and (max-width: 678px) {
  .h-fs-22 {
    font-size: 17.5px !important;
  }
}

.h-fs-24 {
  font-size: 20px !important;
}
@media only screen and (max-width: 678px) {
  .h-fs-24 {
    font-size: 19px !important;
  }
}

.h-fs-26 {
  font-size: 24px !important;
}
@media only screen and (max-width: 678px) {
  .h-fs-26 {
    font-size: 23px !important;
  }
}

.h-fs-32 {
  font-size: 28px !important;
}
@media only screen and (max-width: 678px) {
  .h-fs-32 {
    font-size: 25px !important;
  }
}

.h-fs-48 {
  font-size: 40px !important;
}
@media only screen and (max-width: 678px) {
  .h-fs-48 {
    font-size: 35px !important;
  }
}

.h-fs-64 {
  font-size: 48px !important;
}
@media only screen and (max-width: 678px) {
  .h-fs-64 {
    font-size: 40px !important;
  }
}

.h-fw-regular {
  font-weight: 400 !important;
}
.h-fw-medium {
  font-weight: 450 !important;
}
.h-fw-semiBold {
  font-weight: 550 !important;
}


/* bundled source: assetsUi/assets1/css/colors.css */

.h-bg-white {
    background-color: #fff;
}
.h-color-white {
    color: #fff;
}
.h-bg-light-green {
    background-color: #046D7E;
}
.h-color-light-green {
    color: #58B4C4;
}

.hero-text-color{
    color: #71D6E6;
}
.bg-contact{
    background-color: #FFFFFF;
}
.bg-contacts{
    background-color: #EAEAEA;
}
.start-bg{
    background-color: #046D7E;
}
.btn-bg{
    background-color: #046D7E;
}

.bg-contact{
    background-color: #EAEAEA;
}
.h-bg-purple-on-hover:hover,
.h-bg-purple-on-hover:focus {
    background-color: #8C5780;
}
.h-color-purple-on-hover:hover,
.h-color-purple-on-hover:focus {
    color: #8C5780 !important;
}

.h-color-blue {
    color: #021E66;
}
.h-bg-blue {
    background: #021E66;
}
.h-color-darkerGray {
    color: #565656;
}
.h-color-darkGray {
    color: #717171;
}
.h-color-secondary {
    color: #6578A7;
}
.h-bg-secondary {
    background-color: #6578A7;
}
.h-bg-purple {
   background-color: #8979AC;
}
.h-color-shinyPurple {
    color: #361D69;
}
.h-bg-light-blue {
    background-color: #7991AC;
}
.h-color-shinyLightBlue {
    color: #22446B;
}
.h-bg-brown {
    background-color: #AC8579;
}
.h-color-shinyBrown {
    color: #683B2D;
}
.h-bg-veryLightGray {
    background-color: #FCFCFC;
}
.footer-bg-color {
    background: #F3F6F6;
}
.h-bg-lightPurple {
    background: #B790AE;
}
.h-color-gray2 {
    color: #4F4F4F;
}
.h-color-gray3 {
    color: #828282;
}
.h-bg-darkBlue {
    background: #162346;
}
.h-bg-backGrey {
    background: #F6F6F6;
}
.h-bg-shinyBrown {
    background: #683B2D !important;
}
.h-bg-lightTurquoise {
    background: #E3F7FA;
}
.h-bg-lightInput {
    background: #EEF4F4;
}
.h-bg-transparentLight {
    background: rgba(0, 0, 0, 0.581);
}
.h-color-black {color: #1A1A1A;}
.color-inherit {color: inherit;}



/* bundled source: assetsUi/assets1/css/home.css */
.home-first-section-bg {
  background-image: url(../images/home/first-section-bg/bg-img.png);
}
@media only screen and (max-width: 992px) {
  .home-first-section-bg {
    background-image: url(../images/home/first-section-bg/bg-img-mobile.png);
  }
}
.ninth-section-bg {
  background-image: url(../images/home/ninth-section/bg-img.png);
}

body {
  overflow-x: hidden;
}
.overlay-linear-gradient::after {
  content: "";
  background: linear-gradient(
    270.16deg,
    rgba(0, 0, 0, 0.5) 0.15%,
    rgba(35, 35, 35, 0.5) 52.23%,
    rgba(87, 87, 87, 0) 77.64%
  );
  transform: matrix(-1, 0, 0, 1, 0, 0);

  position: absolute;
  inset: 0;
}

.custom-lh {
  line-height: 10px; /* adjust between 1.4 – 1.8 as needed */
}

.bg-defaul-position,
.home-first-section-bg.bg-defaul-position,
.overlay-linear-gradient.bg-defaul-position::after,
.ninth-section-bg {
  background-position-x: center;
  background-position-y: top;
}
@media only screen and (max-width: 768px) {
  .bg-defaul-position,
  .home-first-section-bg.bg-defaul-position,
  .overlay-linear-gradient.bg-defaul-position::after {
    background-position-x: right;
  }
}
.therapy-type-bg::after {
  content: "";
  background-image: url(../images/home/fourth-section/card-bg/general/img.svg);
  position: absolute;
  inset: 0;
}
.bg-defaul-size,
.home-first-section-bg.bg-defaul-size,
.overlay-linear-gradient.bg-defaul-size::after,
.therapy-type-bg.bg-defaul-size::after {
  background-size: cover;
  width: 100%;
  height: 100%;
}
.making-space-for-bg-image {
  padding-top: 136px !important;
}
.bg-patients::after {
  content: "";
  background: url(../images/home/tenth-section/general-bg/Group\ 811.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 77%;
  height: 100%;
  position: absolute;
  left: 13%;
  top: 0;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .bg-patients::after {
    background-size: cover;
  }
}

.comment-item {
  padding: 24px 12px;
  background-color: white;
}
.comment-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  aspect-ratio: 379 / 407;
}
.bubble {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0; /* behind the text card */
}
.comment-body {
  position: absolute;
  left: 18%;
  top: 6%;
  width: 66%;
  height: 75%;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  padding: 8px 12px;
  /* your request */
  z-index: 1; /* above the SVG bubble */
}

.avatar {
  margin-bottom: 8px;
  line-height: 0;
}
.comment-name {
  margin: 6px 0 2px;
  font-size: 18px;
  font-weight: 600;
  color: #1f4a66;
}
.comment-role {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 500;
  color: #6b7280;
}
.quote {
  margin: 6px 0;
  width: 25px;
  height: 25px;
}
.comment-text {
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 576px) {
  .comment-container {
    max-width: 100%;
  }
  .comment-body {
    left: 16%;
    width: 68%;
  }
  .comment-name {
    font-size: 16px;
  }
  .comment-role,
  .comment-text {
    font-size: 14px;
  }
}
/* Smooth transform for all items */
#carousel-patients .owl-item .comment-container{
  transform: translateY(0);
  transition: transform .28s ease-in-out;
}

/* Only the centered item moves down a bit */
#carousel-patients .owl-item.is-center .comment-container{
  transform: translateY(20px);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  #carousel-patients .owl-item .comment-container{
    transition: none;
  }
}
/* Fix spacing and keep justify on mobile */
@media (max-width: 576px) {
  .lead.custom-text {
    font-size: 1rem !important;     /* normal readable size */
    letter-spacing: 0 !important;   /* remove extra spacing */
    word-spacing: normal !important;
    line-height: 1.5 !important;    /* improve readability */
    text-align: justify !important; /* keep justified text */
  }
}


/* bundled source: assetsUi/assets1/css/home/first-section.css */
/* =========================================
   HERO: Base (shared across viewports)
   ========================================= */

/* Height & image behavior */
#hero {
  min-height: 100vh; /* 🔧 CHANGED (was 80vh) */
}
#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .hero-img {
  height: 100vh;
}
@media (min-width: 992px) {
  #hero,
  #hero .hero-img {
    height: 100vh;      /* 🔧 CHANGED (was 92vh) */
    min-height: 100vh;  /* 🔧 CHANGED (was 92vh) */
  }
}
#hero .hero-img {
  object-fit: cover;
  
}

/* Dark overlay above each slide image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
  z-index: 1;
  display: block;
}
.text-section {
  color: #58b9c9;
}
/* Center captions vertically and keep above overlay */
.carousel-caption.hero-caption {
  top: 35%;
  left: 50%;
  bottom: auto;
  width: min(1100px, 92vw);
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

/* Headline sizes (mobile → desktop) */
.hero-title {
  /* defaults; can be overridden with .font-unbounded */
  letter-spacing: 0.3px;
  
  line-height: 0.8;
}
@media (min-width: 576px) {
  .hero-title {
    font-size: 2.6rem;
  }
}
@media (min-width: 992px) {
  .hero-title {
    font-size: 3.2rem;
  }
}
.section-title {
  /* defaults; can be overridden with .font-unbounded */
  letter-spacing: 0.3px;
  font-size: 1.7rem;
  line-height: 1.1;
}
@media (min-width: 576px) {
  .section-title {
    font-size: 2.6rem;
  }
}
@media (min-width: 992px) {
  .section-title {
    font-size: 4rem;
  }
}
/* Accent color */
.text-accent {
  color: #046d7e;
}

/* Font helpers (you've loaded these in <head>) */
.font-unbounded {
  font-family: "Unbounded", sans-serif;
}
.font-dmsans {
  font-family: "DM Sans", sans-serif;
}
.font-poppins {
  font-family: "Poppins", sans-serif;
}
.font-inter {
  font-family: "Inter", sans-serif;
}

/* Brand filled button */
.btn-helply-primary {
  background: #2596be;
  border-color: #2c7c8a;
  color: #fff;
}
.btn-helply-primary:hover {
  background: #8c5780;
  border-color: #8c5780;
  color: #fff;
}

/* Keep outline pills readable on dark bg */
.btn-outline-light {
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.12);
}

/* Comfortable touch size on phones */
.btn {
  min-height: 48px;
}

.background-color {
  background-color: #23697f;
}

/* =========================================
   Small tablets (optional polish, unchanged desktop)
   ========================================= */
@media (min-width: 576px) and (max-width: 767.98px) {
  .carousel-caption.hero-caption {
    width: 85vw;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero-caption p {
    font-size: 1.05rem;
  }
}

/* =========================================
   Mobile-only tweaks (phones < 576px)
   ========================================= */
@media (max-width: 767.98px) {
  /* Fill the screen and keep image nicely cropped */
  #hero,
  #hero .carousel,
  #hero .carousel-inner,
  #hero .carousel-item,
  #hero .hero-img {
    height: 100dvh;
    min-height: 100dvh;
  }

  /* Reposition caption for readability on small screens */
  .carousel-caption.hero-caption {
    width: 92vw;
    left: 50%;
    top: auto; /* stop vertical centering */
    bottom: 8%; /* sit above indicators */
    transform: translateX(-50%);
    text-align: center;
    padding: 0 8px;
  }

 #hero .hero-img {
        min-height: 100vh;
        object-fit: cover;
      }
  .hero-caption h2 {
  
    line-height: 1.3;
    margin-bottom: 0.5rem !important;
  }
  .hero-title {
    font-size: 1.45rem; /* ~23px */
    line-height: 1.25;
    word-break: break-word;
    hyphens: auto;
  }
  .hero-caption p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
.no-hover:hover {
  background-color: inherit !important;
  color: inherit !important;
  box-shadow: inherit !important;
}

  
  .hero-caption .btn {
    width: 100%;
    min-width: 0 !important;
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }

  .text-justify {
    text-align: justify;
  }
  .hero-caption .gap-3 {
    gap: 0.95rem !important;
  }
  .hero-caption .mt-3 {
    margin-top: 0.75rem !important;
  }
  .hero-caption .mt-4,
  .hero-caption .mt-5 {
    margin-top: 1rem !important;
  }

  /* Indicators smaller; hide arrows on tiny screens (remove these 2 rules if you prefer arrows) */
  .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

@media (max-width: 576px) {
  .why-helply-section .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
  }

  .why-helply-section h2,
  .why-helply-section h5,
  .why-helply-section p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  /* ---------- NAVBAR ---------- */
  /* make search usable on tablet without cramping buttons */
  .navbar .search-form-container { width: 100%; margin-top: .5rem; }
  .navbar .search-container { position: static !important; width: 100%; }
  .navbar .search-container input { width: 100%; }
  .navbar .btn.btn-lg { padding: .5rem .9rem; font-size: 1rem; }

  /* ---------- HERO / CAROUSEL ---------- */
  /* slightly reduce typography & ensure image covers nicely */
  #hero .carousel-caption.hero-caption { bottom: 18%; }
  #hero .hero-title { line-height: 1.2; }
  #hero .display-5 { font-size: 2rem; }     /* down from desktop size */
  #hero .display-6 { font-size: 1.35rem; }

  /* make slide images shorter so caption + CTAs fit comfortably */
  #hero .hero-img { min-height: 70vh !important; object-fit: cover; }

  /* 3 small buttons under headline → 2 per row on tablet */
  #hero .row .col-md-3 { flex: 0 0 50%; max-width: 50%; }
  #hero .row .col-md-3:nth-child(3) { flex-basis: 100%; max-width: 100%; }

  /* desktop-only store CTA sits a bit high on smaller tablets */
  #hero .store-cta { bottom: 8rem !important; }

  /* ---------- "WHY HELPLY" (intro paragraph) ---------- */


  /* ---------- FEATURE CIRCLES (teal section) ---------- */
  /* reduce giant circles (inline width:316px) for tablet */
  .bg-third-section .ratio { width: 240px !important; }

  /* show 2 cards per row, last one full width & centered */
  .bg-third-section .row > .col { flex: 0 0 50%; max-width: 50%; }
  .bg-third-section .row > .col:nth-child(3) { flex-basis: 100%; max-width: 100%; }

  /* tidy text sizes inside the teal cards */
  .bg-third-section h5.fs-3 { font-size: 1.375rem !important; }
  .bg-third-section .font-dmsans.fs-4 { font-size: 1.125rem !important; }
/* iPad / tablet only (portrait iPad Pro 1024px included) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* show 2 cards per row; the 3rd wraps (keeps mobile & desktop untouched) */
  .bg-third-section .row.row-cols-md-3 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* tighten card padding a bit for tablet */
  .bg-third-section .col .h-100 {
    padding: 1.5rem !important; /* overrides p-4 only at this breakpoint */
  }

  /* scale down the circle image so three cards don't feel cramped when wrapping */
  .bg-third-section .ratio.rounded-circle[style*="width: 316px"] {
    width: 260px !important;   /* was 316px */
  }

  /* slight type tweaks for headings and subtext inside this section only */
  .bg-third-section h5.fs-3 { font-size: 1.5rem; }   /* ~24px */
  .bg-third-section .fs-4   { font-size: 1.125rem; } /* ~18px */

  /* ensure wrapped last card stays centered nicely */
  .bg-third-section .row.justify-content-center {
    justify-content: center !important;
  }
}
/* Tablet-only (iPad Mini, Air, Pro portrait/landscape) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Switch to 2-column grid instead of 3 cramped cards */
  .row.row-cols-md-3 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Make the illustration images smaller so they breathe */
  .row.row-cols-md-3 img {
    width: 260px !important;
    height: 210px !important;
  }

  /* Slightly smaller heading text */
  .row.row-cols-md-3 h5.fs-3 {
    font-size: 1.5rem; /* ~24px */
  }

  /* Slightly smaller paragraph text */
  .row.row-cols-md-3 p.fs-4 {
    font-size: 1.125rem; /* ~18px */
    line-height: 1.6;
  }

  /* Keep the 3rd card centered when it wraps to next row */
  .row.justify-content-center {
    justify-content: center !important;
  }
}

  /* ---------- "HOW IT WORKS" (3 steps with SVGs) ---------- */
  /* shrink the big illustrations (inline 324×266) */
  section .row .col article img[style*="width: 324px"] {
    width: 240px !important; height: auto !important;
  }
  section .row .col article h5.fs-3 { font-size: 1.375rem !important; }
  section .row .col article p.fs-4 { font-size: 1.125rem !important; }

  /* ---------- SPECIALIZED SUPPORT (cards) ---------- */
  /* keep paragraphs readable without feeling oversized */
  .card .font-dmsans.fs-4 { font-size: 1.125rem !important; }

  /* ---------- METRICS (24/7 / Confidential / 5★) ---------- */
  .font-poppins.fs-6 { font-size: .95rem !important; }
/* ========= TABLETS: iPad Mini/Air/Pro (992–1199.98px) ========= */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* soften heading sizes a bit for tablets */
  .bg-seventh-section h2.display-5 { font-size: 2.25rem; } /* ~36px */
  .bg-seventh-section p.fs-4      { font-size: 1.125rem; } /* ~18px */

  /* tighten side padding inside the inner wrapper */
  .bg-seventh-section > .px-5 { padding-left: 2rem !important; padding-right: 2rem !important; }

  /* card-like accordion items with breathing room */
  #faqAccordion2 .accordion-item {
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    overflow: hidden;
  }

  #faqAccordion2 .accordion-item + .accordion-item { margin-top: 1rem; }

  /* larger tap targets & balanced layout */
  #faqAccordion2 .accordion-button {
    padding: 1.1rem 1.25rem;
    font-size: 1.125rem; /* ~18px */
    line-height: 1.4;
  }
  #faqAccordion2 .accordion-body {
    padding: 0 1.25rem 1.1rem;
    font-size: 1rem; /* ~16px */
  }

  /* nicer indicator icons (override Bootstrap’s arrow) */
  #faqAccordion2 .accordion-button::after {
    background-image: none;
    content: "+";
    font-weight: 700;
    transform: none !important;
    width: auto; height: auto; margin-left: auto; margin-right: 0;
  }
  #faqAccordion2 .accordion-button:not(.collapsed)::after {
    content: "–";
  }

  /* keep the button background clean when expanded */
  #faqAccordion2 .accordion-button:not(.collapsed) {
    background-color: #f7fbfc; /* subtle */
    box-shadow: none;
  }
}

/* ========= MOBILE: up to 991.98px ========= */
@media (max-width: 991.98px) {
  /* scale down headings a touch to avoid wrapping */
  .bg-seventh-section h2.display-5 { font-size: 2rem; }  /* ~32px */
  .bg-seventh-section p.fs-4      { font-size: 1.0625rem; } /* ~17px */

  /* reduce inner horizontal padding for small screens */
  .bg-seventh-section > .px-5 { padding-left: 1rem !important; padding-right: 1rem !important; }

  /* friendly, tappable accordion */
  #faqAccordion2 .accordion-item {
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    overflow: hidden;
    margin-bottom: 0.75rem;
  }

  #faqAccordion2 .accordion-button {
    padding: 1rem 1rem;
    font-size: 1.0625rem; /* ~17px */
  }
  #faqAccordion2 .accordion-body {
    padding: 0 1rem 1rem;
    font-size: 0.984rem;  /* ~15.75px */
    line-height: 1.6;
  }

  /* same + / – indicator as tablet */
  #faqAccordion2 .accordion-button::after {
    background-image: none;
    content: "+";
    font-weight: 700;
    transform: none !important;
    width: auto; height: auto; margin-left: auto; margin-right: 0;
  }
  #faqAccordion2 .accordion-button:not(.collapsed)::after {
    content: "–";
  }

  #faqAccordion2 .accordion-button:not(.collapsed) {
    background-color: #f7fbfc;
    box-shadow: none;
  }
}

/* ======== DESKTOP (≥1200px) — NO CHANGES APPLIED ======== */
/* Intentionally left empty so your web/desktop view stays the same */

  /* ---------- FAQ heading/body minor tighten ---------- */
  .accordion-button.fs-5 { font-size: 1.05rem !important; }
  .accordion-body.font-inter { font-size: .98rem !important; }
/* ===== iPad / Tablet only (Mini/Air/Pro) ===== */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer-helply .row {
    text-align: center;                /* center text */
    justify-content: center !important; /* center columns */
  }

  .footer-helply .row > div {
    flex: 0 0 100% !important;         /* each section full-width */
    max-width: 100% !important;
  }

  /* brand + badges centered */
  .footer-helply h2,
  .footer-helply p,
  .footer-helply .d-flex.flex-wrap {
    justify-content: center !important;
  }

  /* lists centered */
  .footer-helply ul {
    display: inline-block;             /* shrink to fit content */
    text-align: left;                  /* keep list items aligned neatly */
  }

  /* social icons centered in a row */
  .footer-helply .d-flex.flex-nowrap {
    justify-content: center !important;
    gap: 1rem;
  }
}

/* ===== Tablets: iPad Mini, Air, Pro (768–1199.98px) ===== */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .footer-helply .row {
    text-align: center;                
    justify-content: center !important; 
  }

  .footer-helply .row > div {
    flex: 0 0 100% !important;         
    max-width: 100% !important;
  }

  /* brand + badges centered */
  .footer-helply h2,
  .footer-helply p,
  .footer-helply .d-flex.flex-wrap {
    justify-content: center !important;
  }

  /* lists centered as a block, but keep items left-aligned */
  .footer-helply ul {
    display: inline-block;             
    text-align: left;                  
  }

  /* social icons centered */
  .footer-helply .d-flex.flex-nowrap {
    justify-content: center !important;
    gap: 1rem;
  }
}

}


/* bundled source: assetsUi/assets1/css/home/third-section.css */
.bg-third-section{
    background-color: #57B9C9
}

@media (max-width: 576px) {
  .bg-third-section .ratio {
    width: 200px !important;  /* shrink the circle wrapper */
  }
}

/* iPad / tablet only (portrait iPad Pro 1024px included) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* show 2 cards per row; the 3rd wraps (keeps mobile & desktop untouched) */
  .bg-third-section .row.row-cols-md-3 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* tighten card padding a bit for tablet */
  .bg-third-section .col .h-100 {
    padding: 1.5rem !important; /* overrides p-4 only at this breakpoint */
  }

  /* scale down the circle image so three cards don't feel cramped when wrapping */
  .bg-third-section .ratio.rounded-circle[style*="width: 316px"] {
    width: 260px !important;   /* was 316px */
  }

  /* slight type tweaks for headings and subtext inside this section only */
  .bg-third-section h5.fs-3 { font-size: 1.5rem; }   /* ~24px */
  .bg-third-section .fs-4   { font-size: 1.125rem; } /* ~18px */

  /* ensure wrapped last card stays centered nicely */
  .bg-third-section .row.justify-content-center {
    justify-content: center !important;
  }
}
@media (max-width: 576px) {
  .support-card p {
    text-align: left !important;   /* stop justification */
    /* reset justification */
    word-spacing: normal !important;
    letter-spacing: normal !important;
    font-size: 1.2rem !important; 
    
  }

    .support-card {
      margin-left: .5rem;
      margin-right: .5rem;
    }
    
}
.no-hover {
    background-color: #23697f;
    color: white;
    transition: background-color 0.3s ease;
}

/* Hover effect */
.no-hover:hover {
    background-color: #54A0AD;
    color: white;
}

/* Prevent mobile tap from changing background */
.no-hover:active,
.no-hover:focus {
    background-color: #54A0AD !important;
    color: white !important;
    outline: none;
    box-shadow: none;
}



/* bundled source: assetsUi/assets1/css/home/fifth-section.css */
.bg-support {
  background-image: url('home/assets/images/home/bg-section-five.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.text-accent {
  color: #046D7E;
}
.word-spacing{
    word-spacing: 0.5rem;
}



/* bundled source: assetsUi/assets1/css/home/seventh-section.css */
/* Base styles (desktop-first) */
.accordion-button::after {
  background-image: none !important;
  content: "+";               /* Plus sign for collapsed */
  font-size: 1.5rem;          /* default size ~24px */
  font-weight: bold;
  transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  content: "−";               /* Minus sign when open */
  font-size: 1.5rem;
  font-weight: bold;
}

/* Background overrides */
.bg-seventh-section {
  background-color: #F3F6F6;
}
.accordion-button {
  background-color: #F3F6F6 !important;
}
.accordion-button:not(.collapsed) {
  background-color: #F3F6F6 !important;
  box-shadow: none; /* removes Bootstrap's default shadow */
}

/* Tablet (iPad Mini/Air/Pro portrait & landscape, 992–1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .accordion-button::after,
  .accordion-button:not(.collapsed)::after {
    font-size: 1.75rem; /* ~28px for better visibility */
  }
}

/* Mobile (up to 991px) */
@media (max-width: 991.98px) {
  .accordion-button::after,
  .accordion-button:not(.collapsed)::after {
    font-size: 1.25rem; /* ~20px, fits tighter screens */
  }
}

/* Optional testimonial hooks you already had */
.testimonial-card { border-radius: 1rem; }
.testimonial-avatar { width: 64px; height: 64px; object-fit: cover; }


/* bundled source: assetsUi/assets1/css/footer.css */
@media (max-width: 576px) {
  .footer-helply {
    text-align: center;
  }

  .footer-helply .col-6,
  .footer-helply .col-12 {
    margin-bottom: 1.5rem; /* spacing between sections */
  }

  .footer-helply .d-flex {
    justify-content: center !important; /* center flex items like social icons & app badges */
  }

  .footer-helply ul {
    padding-left: 0; /* remove left padding for lists */
  }
}
.bg-footer{
  background-color: #F3F6F6;
}

.footer-text {
  font-size: small;
}