:root {
  --blue: #02339A;
  --blue-dark: #02339A;
  --green: #009502;
  --text: #252a31;
  --muted: #697381;
  --light: #f5f8fc;
  --line: #e1e7f0;
  --white: #fff;
  --shadow: 0 18px 45px rgba(10, 38, 88, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, Arial, sans-serif; color: var(--text); background: #fff; line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { border: 0; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 100px 0; }
.sr-only, .skip-link { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link:focus { width: auto; height: auto; clip: auto; z-index: 10000; padding: 10px 15px; background: #fff; color: var(--blue); }

.site-header { height: 88px; display: flex; align-items: center; background: rgba(255,255,255,.97); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(2,51,154,.08); transition: .3s ease; }
.site-header.scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.08); height: 76px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 210px; flex: 0 0 210px; }
.brand img { width: 100%; height: 58px; object-fit: contain; }
.main-nav > ul { list-style: none; display: flex; align-items: center; gap: 3px; margin: 0; padding: 0; }
.main-nav li { position: relative; }
.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 12px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    position: relative;
}
.main-nav > ul > li > a:after { content: ''; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: .3s ease; }
.main-nav > ul > li > a:hover, .main-nav > ul > li > a.active { color: var(--blue); }
.main-nav > ul > li > a:hover:after, .main-nav > ul > li > a.active:after { transform: scaleX(1); }
.submenu-toggle {
    background: transparent;
    color: var(--blue);
    position: absolute;
    right: -6px;
    top: 8px;
    cursor: pointer;
    padding: 2px;
}
/* ===================================
   LANGUAGE DROPDOWN
=================================== */

.language-dropdown {
  position: relative;
  flex-shrink: 0;
  margin-left: 20px;
}

.language-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  background: transparent;
  border: 0;
  padding: 10px 4px;

  font-family: inherit;
  font-size: 14px;
  font-weight: 500;

  color: #111;
  cursor: pointer;
  white-space: nowrap;
}

.language-btn .fa-globe {
  color: #00a900;
  font-size: 16px;
}

.language-btn .fa-angle-down {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.language-dropdown:hover .language-btn .fa-angle-down {
  transform: rotate(180deg);
}


/* Dropdown */

.language-menu {
  position: absolute;

  top: calc(100% + 8px);
  right: 0;

  width: 150px;

  margin: 0;
  padding: 7px 0;

  list-style: none;

  background: #fff;

  border: 1px solid #e8e8e8;
  border-radius: 5px;

  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.10);

  opacity: 0;
  visibility: hidden;

  transform: translateY(7px);

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;

  z-index: 9999;
}


/* Show Dropdown */

.language-dropdown:hover .language-menu,
.language-dropdown.active .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* Language Buttons */

.language-menu li {
  margin: 0;
  padding: 0;
}

.language-menu button {
  display: block;

  width: 100%;

  padding: 10px 15px;

  border: 0;
  background: transparent;

  text-align: left;

  font-family: inherit;
  font-size: 14px;
  font-weight: 500;

  color: #222;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.language-menu button:hover {
  background: #f3f9f3;
  color: #00a900;
}


/* Mobile */

@media (max-width: 991px) {

  .language-dropdown {
    margin-left: auto;
    margin-right: 15px;
  }

  .language-menu {
    right: 0;
  }

  .language-btn {
    font-size: 13px;
  }

}


@media (max-width: 480px) {

  .language-dropdown {
    margin-right: 10px;
  }

  .current-language {
    display: none;
  }

  .language-btn {
    gap: 5px;
  }

}
/* Hide Google Translate top banner */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
    visibility: hidden !important;
}

/* Google body ko neeche push karta hai, usko reset karo */
body {
    top: 0 !important;
    position: static !important;
}

/* Hide Google Translate tooltip */
#goog-gt-tt,
.goog-te-balloon-frame,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
    display: none !important;
}

/* Remove translation highlight */
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}
.submenu { position: absolute; list-style: none; top: calc(100% + 10px); left: 0; width: 210px; padding: 10px; margin: 0; background: #fff; border-radius: 12px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s ease; border: 1px solid var(--line); }
.submenu li a { display: block; padding: 10px 12px; border-radius: 8px; font-size: 14px; font-weight: 600; }
.submenu li a:hover { background: var(--light); color: var(--blue); }
.has-submenu:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 10px; background: var(--blue); padding: 12px; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: #fff; margin: 5px 0; transition: .25s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { min-height: calc(100vh - 88px); height: 760px; position: relative; overflow: hidden; display: grid; place-items: center; background: #071b30; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 2; text-align: center; margin-top: 80px; }
.hero-tagline {
    margin: 0 auto 42px;
    top: 110px;
    position: relative;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;position:relative;z-index: 99; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 27px; border-radius: 8px; font-weight: 700; font-size: 14px; letter-spacing: .2px; transition: .3s ease; border: 2px solid transparent;border-radius: 0px 62px 0px 62px; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.14); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary { background: var(--green); color: #fff; }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); backdrop-filter: blur(6px); }
.btn-outline-light:hover { background: #fff; color: var(--blue); }
.btn-white { background: #fff; color: var(--blue); }

.eyebrow { display: inline-block; color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: 1.4px; font-size: 12px; margin-bottom: 10px; }
.eyebrow.light { color: #bcd1ff; }
h1,h2,h3,h4 { font-family: "Roboto Slab", Georgia, serif; line-height: 1.2; margin-top: 0; }
h2 { font-size: clamp(34px, 4vw, 50px); margin-bottom: 22px; color: #172235; }
h3 { color: #18243a; }
p { margin-top: 0; color: var(--muted); }
.section-heading { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-heading p { font-size: 16px; }

.about-section { background: linear-gradient(180deg, #fff, #fbfdff); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; }
.about-collage { min-height: 560px; display: grid; grid-template-columns: 1.12fr .88fr; gap: 16px; position: relative; }
.photo { margin: 0; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.photo:hover img { transform: scale(1.04); }
.photo-main { height: 560px; }
.photo-stack { display: grid; gap: 16px; grid-template-rows: 1fr .72fr; }
.photo-small, .photo-wide { min-height: 0; }
.care-badge { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); background: #fff; box-shadow: var(--shadow); border-radius: 14px; padding: 16px 22px; min-width: 190px; text-align: center; border-left: 5px solid var(--green); }
.care-badge strong, .care-badge span { display: block; }
.care-badge strong { color: var(--blue); }
.care-badge span { font-size: 12px; color: var(--muted); margin-top: 2px; }
.about-copy p { font-size: 16px; margin-bottom: 30px; }

.services-section { background: #f4f8ff; overflow: hidden; }
.service-slider-wrap { position: relative; }
.service-slider { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { min-height: 310px; padding: 36px 28px; background: #fff; border: 1px solid #e7edf6; border-radius: var(--radius); text-align: center; box-shadow: 0 12px 30px rgba(15,59,120,.07); transition: .45s ease; position: relative; overflow: hidden; }
.service-card:before { content: ''; position: absolute; inset: auto 0 0; height: 5px; background: linear-gradient(90deg, var(--blue), var(--green)); transform: scaleX(0); transition: .35s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 22px 45px rgba(15,59,120,.13); }
.service-card:hover:before { transform: scaleX(1); }
.service-icon { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 24px; border-radius: 18px; background: #edf3ff; color: var(--blue); }
.service-icon svg { width: 34px; height: 34px; fill: currentColor; }
.service-card h3 { font-family: Jua, Inter, sans-serif; font-size: 21px; font-weight: 400; margin-bottom: 12px; }
.service-card p { font-size: 14px; }
.slider-btn { display: none; }
.section-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 42px; }

.join-section { padding: 90px 0; background: #fff; }
.join-card { min-height: 440px; background: linear-gradient(135deg, #012b85, #0249bc); border-radius: 34px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; overflow: hidden; box-shadow: 0 30px 70px rgba(1,43,133,.2); position: relative; }
.join-card:before { content: ''; position: absolute; width: 330px; height: 330px; border: 70px solid rgba(255,255,255,.06); border-radius: 50%; left: -120px; bottom: -170px; }
.join-copy { padding: 70px; position: relative; z-index: 2; }
.join-copy h2, .join-copy p { color: #fff; }
.join-copy p { color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 28px; }
.join-image { height: 100%; min-height: 440px; position: relative; }
.join-image:after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #0249bc 0, transparent 35%); }
.join-image img { width: 100%; height: 100%; object-fit: cover; }

.trust-section { background: #fbfcfe; }
.trust-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.trust-image { position: relative; }
.trust-image img { width: 100%; height: 650px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.trust-floating-card { position: absolute; right: -25px; bottom: 38px; background: #fff; border-radius: 15px; box-shadow: var(--shadow); padding: 18px 22px; border-top: 4px solid var(--blue); }
.trust-floating-card strong, .trust-floating-card span { display: block; }
.trust-floating-card strong { color: var(--blue); }
.trust-floating-card span { color: var(--muted); font-size: 12px; margin-top: 3px; }
.trust-list { display: grid; gap: 0; margin-top: 30px; }
.trust-item { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.trust-item:last-child { border-bottom: 0; }
.trust-item .number { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 12px; background: #eef4ff; color: var(--blue); font-weight: 800; }
.trust-item h3 { font-size: 20px; margin: 0 0 5px; }
.trust-item p { margin: 0; font-size: 14px; }

.testimonials-section { background: #f2f6fb; }
.testimonial-shell { position: relative; overflow: hidden; }
.testimonial-track { display: flex; gap: 22px; transition: transform .55s ease; }
.testimonial-card { flex: 0 0 calc((100% - 44px)/3); background: #fff; border-radius: var(--radius); padding: 32px; border: 1px solid #e7ebf1; box-shadow: 0 14px 30px rgba(17,44,80,.06); }
.stars { color: #e8a009; letter-spacing: 3px; font-size: 18px; margin-bottom: 18px; }
.testimonial-card blockquote { margin: 0 0 24px; color: #4c5664; font-size: 14px; min-height: 145px; }
.person { border-top: 1px solid var(--line); padding-top: 18px; }
.person strong, .person span { display: block; }
.person strong { color: var(--blue); }
.person span { font-size: 12px; color: var(--muted); margin-top: 2px; }
.testimonial-arrow { position: absolute; z-index: 4; width: 42px; height: 42px; border-radius: 50%; background: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.12); color: var(--blue); font-size: 28px; top: 50%; transform: translateY(-50%); cursor: pointer; }
.testimonial-prev { left: 8px; }
.testimonial-next { right: 8px; }
.testimonial-dots { display: flex; gap: 8px; justify-content: center; margin-top: 26px; }
.testimonial-dots button { width: 9px; height: 9px; border-radius: 50%; padding: 0; background: #b8c2d0; cursor: pointer; }
.testimonial-dots button.active { width: 26px; border-radius: 7px; background: var(--blue); }

.newsletter-section { background: #009502; padding: 70px 0; }
.newsletter-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.newsletter-grid h2 { color: #fff; font-size: clamp(30px, 3vw, 42px); margin-bottom: 12px; }
.newsletter-grid p { color: rgba(255,255,255,.75); margin-bottom: 0; }
.newsletter-form input { min-width: 100%; height: 58px; border: 0; border-radius: 10px; padding: 0 18px; outline: 0; }
.newsletter-form input:focus { box-shadow: 0 0 0 4px rgba(255,255,255,.2); }
.newsletter-form button { height: 58px; padding: 0 25px; border-radius: 10px; background: var(--blue); color: #fff; font-weight: 800; cursor: pointer;width:100%; border-radius: 0px 62px 0px 62px;margin-top:15px;}
.form-message { grid-column: 1 / -1; color: #fff; min-height: 18px; }

.site-footer { background: #f6f7f8; color: #3f4752; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .72fr .72fr 1fr; gap: 55px; padding: 76px 0 58px; }
.footer-brand { display: block; width: 235px; margin-bottom: 22px; }
.footer-about p { font-size: 14px; max-width: 410px; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 7px; background: var(--blue); color: #fff; font-weight: 800; text-transform: lowercase; transition: .25s ease; }
.socials a:hover { background: var(--green); transform: translateY(-3px); }
.footer-col h3 { font-size: 18px; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h3:after { content: ''; position: absolute; left: 0; bottom: 0; width: 48px; height: 2px; background: var(--blue); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: 8px 0; }
.footer-col a { color: #48525f; font-size: 14px; }
.footer-col a:hover { color: var(--blue); }
.visit p { font-size: 14px; margin-bottom: 17px; }
.visit strong { color: var(--blue); }
.footer-bottom { border-top: 1px solid #dfe4ea; padding: 22px 0; text-align: center; font-size: 13px; color: #65707f; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 22px; cursor: pointer; box-shadow: 0 10px 25px rgba(2,51,154,.25); opacity: 0; visibility: hidden; transform: translateY(15px); transition: .3s ease; z-index: 99; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.reveal { opacity: 0; transition: opacity .75s ease, transform .75s ease; }
.reveal.fade-up { transform: translateY(35px); }
.reveal.fade-left { transform: translateX(-45px); }
.reveal.fade-right { transform: translateX(45px); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .brand { width: 170px; flex-basis: 170px; }
  .main-nav > ul > li > a { padding: 0 8px; font-size: 13px; }
  .service-card { padding: 32px 20px; }
  .about-grid, .trust-grid { gap: 50px; }
}

@media (max-width: 960px) {
  .site-header { height: 76px; }
  .header-inner { position: relative; }
  .brand { width: 190px; flex-basis: 190px; }
  .menu-toggle { display: block;right: -90px;
        position: relative; }
  .main-nav { position: absolute; left: 0; right: 0; top: calc(100% + 12px); background: #fff; border-radius: 16px; box-shadow: var(--shadow); border: 1px solid var(--line); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .28s ease; max-height: calc(100vh - 110px); overflow-y: auto; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > ul { display: block; padding: 12px; }
  .main-nav > ul > li > a { min-height: 48px; padding: 0 12px; font-size: 14px; }
  .main-nav > ul > li > a:after { display: none; }
  .submenu-toggle { top: 9px; right: 10px; width: 34px; height: 34px; }
  .submenu { position: static; width: auto; box-shadow: none; border: 0; background: #f5f8fc; margin: 0 0 7px; padding: 5px 10px; display: none; opacity: 1; visibility: visible; transform: none; }
  .has-submenu:hover .submenu { display: none; }
  .has-submenu.submenu-open .submenu { display: block; }
  .hero { min-height: 620px; height: 75vh; }
  .hero-content { margin-top: 30px; }
  .about-grid, .trust-grid, .join-card, .newsletter-grid { grid-template-columns: 1fr; }
  .about-collage { max-width: 680px; margin: 0 auto; }
  .about-copy, .trust-copy { text-align: center; }
  .trust-list { text-align: left; max-width: 700px; margin: 28px auto 0; }
  .join-card { grid-template-columns: 1fr 1fr; }
  .join-copy { padding: 55px 40px; }
  .service-slider { overflow: hidden; display: flex; gap: 18px; }
  .service-card { flex: 0 0 calc((100% - 18px)/2); }
  .slider-btn { display: grid; place-items: center; position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.13); z-index: 3; color: var(--blue); font-size: 28px; cursor: pointer; }
  .slider-btn.prev { left: -14px; }
  .slider-btn.next { right: -14px; }
  .testimonial-card { flex-basis: calc((100% - 22px)/2); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col.visit { grid-column: 1 / -1; }
}

@media (max-width: 700px) {

  .container { width: min(100% - 28px, 1280px;); }
  .section { padding: 72px 0; }
  h2 { font-size: 34px; }
  .hero { min-height: 560px; height: 72vh; }
  .hero-shade { background: rgba(0,25,70,.34); }
  .hero-tagline { width: 94%; margin-bottom: 30px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: min(100%, 300px); }
  .about-collage { min-height: 450px; grid-template-columns: 1fr 1fr; gap: 10px; }
  .photo-main { height: 450px; }
  .photo-stack { gap: 10px; }
  .care-badge { bottom: 18px; min-width: 160px; padding: 12px 15px; }
  .service-card { flex-basis: 100%; min-height: 280px; }
  .join-section { padding: 65px 0; }
  .join-card { display: flex; flex-direction: column; border-radius: 24px; }
  .join-copy { padding: 42px 26px; text-align: center; }
  .join-image { min-height: 320px; width: 100%; }
  .join-image:after { background: linear-gradient(180deg, #0249bc 0, transparent 35%); }
  .trust-image img { height: 500px; }
  .trust-floating-card { right: 12px; bottom: 20px; }
  .trust-item { grid-template-columns: 48px 1fr; gap: 15px; }
  .trust-item .number { width: 46px; height: 46px; }
  .testimonial-card { flex-basis: 100%; }
  .testimonial-card blockquote { min-height: 0; }
  .newsletter-section { padding: 58px 0; text-align: center; }
  .newsletter-grid { gap: 30px; }
  .newsletter-form { grid-template-columns: 1fr; }
  .newsletter-form button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; padding-top: 58px; }
  .footer-about, .footer-col.visit { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .brand { width: 155px; flex-basis: 155px; }
  .brand img { height: 50px; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero { min-height: 510px; }
  .about-collage { display: block; min-height: auto; }
  .photo-main { height: 440px; }
  .photo-stack { display: none; }
  .care-badge { left: 18px; transform: none; }
  .section-actions .btn { width: 100%; }
  .trust-image img { height: 420px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about, .footer-col.visit { grid-column: auto; }
  .slider-btn.prev { left: -5px; }
  .slider-btn.next { right: -5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Inner pages */
.inner-hero { min-height: 410px; display: grid; place-items: center; text-align: center; background-size: cover; background-position: center; color: #fff; }
.inner-hero .container { padding: 90px 0; }
.inner-hero h1 { font-size: clamp(42px, 6vw, 72px); margin: 0 0 15px; color: #fff; }
.inner-hero p { max-width: 800px; margin: 0 auto; color: rgba(255,255,255,.88); font-size: 18px; }
.soft-bg { background: #f4f8ff; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.rounded-media { width: 100%; height: 600px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.check-list { list-style: none; margin: 22px 0 30px; padding: 0; }
.check-list li { position: relative; padding: 7px 0 7px 30px; color: #586372; }
.check-list li:before { content: '✓'; position: absolute; left: 0; top: 7px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: #eaf7e7; color: var(--green); font-weight: 900; font-size: 12px; }
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.feature-grid article, .mission-grid article, .promise-card, .application-box { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px; box-shadow: 0 12px 30px rgba(10,38,88,.06); }
.feature-grid h3 { font-size: 19px; }
.values-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.values-grid article { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 20px; text-align: center; }
.values-grid article > span { width: 48px; height: 48px; display: grid; place-items: center; margin: 0 auto 15px; border-radius: 50%; background: var(--blue); color: #fff; font: 700 22px "Roboto Slab",serif; }
.values-grid h3 { font-size: 18px; margin-bottom: 10px; }
.values-grid p { font-size: 13px; }
.mission-grid { margin-top: 35px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-overview-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.service-overview-grid article { padding: 38px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 12px 30px rgba(10,38,88,.06); }
.service-overview-grid .service-icon { margin: 0 0 22px; }
.service-overview-grid a, .text-link, .resource-card a { color: var(--blue); font-weight: 800; font-size: 14px; }
.long-service-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.long-service-card { border: 1px solid var(--line); border-radius: 20px; padding: 32px; background: #fff; box-shadow: 0 12px 30px rgba(10,38,88,.06); }
.long-service-card h3 { font-size: 23px; }
.core-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.core-card { padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 12px 30px rgba(10,38,88,.06); }
.core-card h3 { color: var(--blue); }
.promise-card { max-width: 800px; margin: 0 auto; }
.application-box { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 42px; }
.application-box > div { max-width: 700px; }
.resource-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.resource-card { padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 12px 30px rgba(10,38,88,.06); }
.resource-card > span { color: var(--green); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; }
.resource-card h3 { font-size: 22px; margin: 12px 0; }
.faq-wrap { max-width: 900px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: #fff; margin-bottom: 14px; overflow: hidden; }
.faq-question { width: 100%; padding: 20px 24px; display: flex; justify-content: space-between; gap: 20px; text-align: left; cursor: pointer; background: #fff; color: #172235; font-weight: 800; }
.faq-question b { font-size: 24px; color: var(--blue); line-height: 1; transition: .25s ease; }
.faq-item.open .faq-question b { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; }
.faq-answer p { margin: 0; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.contact-panel { background: #f4f8ff; border-radius: 22px; padding: 38px; }
.contact-details { display: grid; gap: 18px; margin-top: 28px; }
.contact-details article { padding-bottom: 18px; border-bottom: 1px solid #dce6f4; }
.contact-details article:last-child { border-bottom: 0; }
.contact-details strong, .contact-details a, .contact-details span { display: block; }
.contact-details strong { color: var(--blue); margin-bottom: 5px; }
.contact-details a, .contact-details span { color: #5f6875; }
.contact-form { border: 1px solid var(--line); border-radius: 22px; padding: 38px; box-shadow: 0 15px 36px rgba(10,38,88,.08); }
.contact-form h3 { font-size: 26px; }
.contact-form label { display: block; font-weight: 700; font-size: 13px; color: #3b4655; margin-bottom: 16px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; border: 1px solid #dbe2ec; border-radius: 10px; padding: 13px 14px; outline: 0; font: inherit; background: #fff; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(2,51,154,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-message.dark { color: var(--green); display: block; margin-top: 10px; }
.inner-cta { padding: 70px 0; background: linear-gradient(135deg,#012a7c,#023da6); }
.inner-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.inner-cta h2 { color: #fff; margin-bottom: 10px; font-size: clamp(30px,4vw,44px); }
.inner-cta p { color: rgba(255,255,255,.76); margin: 0; }
.inner-cta .btn { flex: 0 0 auto; }

@media (max-width: 960px) {
  .split-layout, .contact-grid { grid-template-columns: 1fr; }
  .rounded-media { height: 520px; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(3,1fr); }
  .resource-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .inner-hero { min-height: 340px; }
  .inner-hero .container { padding: 65px 0; }
  .inner-hero h1 { font-size: 42px; }
  .inner-hero p { font-size: 15px; }
  .rounded-media { height: 430px; }
  .feature-grid, .service-overview-grid, .long-service-grid, .core-grid, .resource-grid, .mission-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .application-box, .inner-cta .container { flex-direction: column; align-items: flex-start; }
  .inner-cta .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .contact-panel, .contact-form, .application-box { padding: 26px 20px; }
}

/* Services Dropdown */

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 7px;
}

.menu-item-has-children .sub-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-item-has-children .sub-arrow svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
    transition: transform 0.25s ease;
}


/* Dropdown Menu */

.menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 220px;

    margin: 0;
    padding: 8px 0;

    list-style: none;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 4px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 99999;
}


/* Desktop Hover */

.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item-has-children:hover > a .sub-arrow svg {
    transform: rotate(180deg);
}


/* Dropdown Links */

.menu-item-has-children .sub-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.menu-item-has-children .sub-menu li a {
    display: block;

    width: 100%;

    padding: 11px 18px;

    color: #222;
    background: #fff;

    font-size: 14px;
    font-weight: 500;
    text-decoration: none;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.menu-item-has-children .sub-menu li a:hover {
    background: #f4f9f4;
    color: #00a900;
}


/* Click Active State */

.menu-item-has-children.dropdown-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item-has-children.dropdown-open > a .sub-arrow svg {
    transform: rotate(180deg);
}


/* Mobile */

@media (max-width: 991px) {

    .menu-item-has-children .sub-menu {
        position: static;

        width: 100%;
        min-width: 100%;

        display: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        box-shadow: none;

        border: 0;
        border-radius: 0;

        padding: 5px 0 5px 15px;
        margin: 0;

        background: #f8f8f8;
    }

    .menu-item-has-children.dropdown-open > .sub-menu {
        display: block;
    }

    .menu-item-has-children:hover > .sub-menu {
        display: none;
    }

    .menu-item-has-children.dropdown-open:hover > .sub-menu {
        display: block;
    }

}
/* =========================================
   WHY FAMILIES TRUST US
========================================= */

.trust-section {
    width: 100%;
    min-height: 675px;

    padding: 95px 30px 0;

    background: #b9e3bc;

    position: relative;
}


/* Main Wrapper */

.trust-wrapper {
    width: 100%;
    max-width: 1270px;

    margin: 0 auto;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    gap: 38px;

    position: relative;
}


/* =========================================
   LEFT LIGHT CARD
========================================= */

.trust-content-box {
    width: 760px;
    min-height: 530px;

    padding: 48px 48px 45px;

    background: rgba(245, 255, 245, 0.68);

    border-radius: 10px;

    box-shadow:
        0 10px 28px
        rgba(0, 70, 0, 0.10);

    position: relative;

    z-index: 2;
}


/* Heading */

.trust-content-box h2 {
    margin: 0 0 30px;

    color: #050505;

    font-family: "Fredoka", Arial, sans-serif;

    font-size: 38px;
    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -1px;
}


/* =========================================
   CARDS GRID
========================================= */

.trust-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}


/* Individual Card */

.trust-card {
    min-height: 185px;

    padding: 48px 38px 34px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    background: #205aa8;

    border-radius: 12px;

    box-shadow:
        0 13px 22px
        rgba(8, 59, 122, 0.18);
}


.trust-card h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-family: "Fredoka", Arial, sans-serif;

    font-size: 18px;
    line-height: 1.25;

    font-weight: 600;
}


.trust-card p {
    margin: 0;

    max-width: 235px;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
    line-height: 1.65;

    font-weight: 400;
}


/* =========================================
   RIGHT IMAGE
========================================= */

.trust-image-box {
    width: 466px;
    height: 700px;

    margin-top: -50px;

    position: relative;

    z-index: 3;

    overflow: hidden;

    background: #dddddd;
}


.trust-image-box img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center center;
}


/* =========================================
   1200px
========================================= */

@media (max-width: 1200px) {

    .trust-section {
        padding-left: 35px;
        padding-right: 35px;
    }


    .trust-wrapper {
        gap: 28px;
    }


    .trust-content-box {
        width: 65%;

        padding:
            40px
            36px
            40px;
    }


    .trust-image-box {
        width: 35%;

        height: 620px;
    }


    .trust-card {
        padding:
            38px
            28px
            30px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .trust-section {
        min-height: auto;

        padding:
            65px
            25px;
    }


    .trust-wrapper {
        max-width: 760px;

        flex-direction: column;

        gap: 30px;
    }


    .trust-content-box {
        width: 100%;

        min-height: auto;

        padding:
            40px
            35px;
    }


    .trust-content-box h2 {
        font-size: 34px;
    }


    .trust-image-box {
        width: 100%;
        height: 500px;

        margin-top: 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {
    .hero-tagline {
    top:0 !important;
}
    .trust-section {
        padding:
            45px
            18px;
    }


    .trust-content-box {
        padding:
            30px
            22px;
    }


    .trust-content-box h2 {
        font-size: 30px;

        margin-bottom: 25px;
    }


    .trust-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .trust-card {
        min-height: 150px;

        padding:
            30px
            25px;
    }


    .trust-card h3 {
        font-size: 18px;
    }


    .trust-card p {
        font-size: 14px;

        max-width: 100%;
    }


    .trust-image-box {
        height: 420px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .trust-section {
        padding:
            35px
            15px;
    }


    .trust-content-box {
        border-radius: 8px;

        padding:
            26px
            17px;
    }


    .trust-content-box h2 {
        font-size: 28px;
    }


    .trust-card {
        padding:
            27px
            20px;

        border-radius: 9px;
    }


    .trust-card h3 {
        font-size: 17px;
    }


    .trust-card p {
        font-size: 13px;
    }


    .trust-image-box {
        height: 350px;
    }

}
/* =========================================
   JOIN OUR TEAM SECTION
========================================= */

.join-team-section {
    width: 100%;
    padding: 150px 30px 110px;
    background: #ffffff;
}


/* Main Card */

.join-team-card {
    width: 100%;
    max-width: 1280px;
    min-height: 296px;

    margin: 0 auto;

    position: relative;

    display: flex;
    align-items: center;

    background: #ffffff;

    border: 1px solid #dddddd;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.22);

    overflow: visible;
}


/* =========================================
   LEFT CONTENT
========================================= */

.join-team-content {
    width: calc(100% - 310px);

    padding: 43px 50px 42px;
}


.join-team-content h2 {
    margin: 0 0 21px;

    color: #050505;

    font-family: "Fredoka", Arial, sans-serif;

    font-size: 40px;
    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -1px;
}


.join-team-content p {
    margin: 0 0 35px;

    color: #050505;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;
    line-height: 1.55;

    font-weight: 400;
}


/* =========================================
   BUTTON
========================================= */

.join-team-btn {
    min-width: 214px;
    height: 45px;

    padding: 0 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #00a900;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;
    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    border: 0;

    border-radius: 40px 40px 0 40px;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


.join-team-btn:hover {
    background: #078c14;

    color: #ffffff;

    transform: translateY(-1px);
}


/* =========================================
   RIGHT IMAGE
========================================= */

.join-team-image {
    width: 300px;
    height: 300px;

    position: absolute;

    top: -49px;
    right: -11px;

    overflow: hidden;

    border-radius: 40px 40px 40px 40px;

    background: #eeeeee;
}


.join-team-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center center;
}


/* =========================================
   RESPONSIVE 1200
========================================= */

@media (max-width: 1200px) {

    .join-team-section {
        padding-left: 35px;
        padding-right: 35px;
    }


    .join-team-card {
        min-height: 280px;
    }


    .join-team-image {
        width: 275px;
        height: 275px;

        top: -35px;
        right: -5px;
    }


    .join-team-content {
        width: calc(100% - 285px);

        padding-left: 45px;
        padding-right: 35px;
    }


    .join-team-content h2 {
        font-size: 36px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .join-team-section {
        padding-top: 45px;
    }


    .join-team-card {
        min-height: 250px;
    }


    .join-team-content {
        width: calc(100% - 245px);

        padding:
            35px
            25px
            35px
            35px;
    }


    .join-team-content h2 {
        font-size: 32px;

        margin-bottom: 15px;
    }


    .join-team-content p {
        font-size: 14px;

        margin-bottom: 25px;
    }


    .desktop-break {
        display: none;
    }


    .join-team-image {
        width: 235px;
        height: 235px;

        top: -25px;
        right: -4px;

        border-radius: 30px;
    }


    .join-team-btn {
        min-width: 185px;

        height: 42px;

        padding-left: 23px;
        padding-right: 23px;

        font-size: 13px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .join-team-section {
        padding:
            35px
            20px
            35px;
    }


    .join-team-card {
        width: 100%;

        min-height: auto;

        display: flex;
        flex-direction: column-reverse;

        align-items: stretch;

        overflow: hidden;
    }


    .join-team-image {
        position: relative;

        top: auto;
        right: auto;

        width: 100%;
        height: 300px;

        border-radius: 0;
    }


    .join-team-content {
        width: 100%;

        padding:
            32px
            25px
            35px;
    }


    .join-team-content h2 {
        font-size: 31px;
    }


    .join-team-content p {
        font-size: 14px;

        line-height: 1.6;

        margin-bottom: 26px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .join-team-section {
        padding:
            28px
            15px;
    }


    .join-team-image {
        height: 235px;
    }


    .join-team-content {
        padding:
            27px
            20px
            30px;
    }


    .join-team-content h2 {
        font-size: 28px;

        margin-bottom: 15px;
    }


    .join-team-content p {
        font-size: 13px;

        margin-bottom: 23px;
    }


    .join-team-btn {
        min-width: 180px;

        height: 42px;

        font-size: 13px;
    }

}
*{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family:"Fredoka", sans-serif;
      background:#fff;
    }

    .care-section{
      min-height:655px;
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
      background:
        linear-gradient(
          rgba(0,0,0,.20),
          rgba(0,0,0,.20)
        ),
        url("/assets/images/imags4-3.webp") center center / cover no-repeat;
      overflow:hidden;
      padding:70px 20px 85px;
    }

    .care-section::after{
      content:"";
      position:absolute;
      inset:0;
      background:rgba(255,255,255,.08);
      pointer-events:none;
    }

    .care-container{
      width:100%;
      max-width:1260px;
      position:relative;
      z-index:2;
      text-align:center;
    }

    .care-heading{
      color:#fff;
      font-size:42px;
      line-height:1.1;
      font-weight:700;
      text-transform:uppercase;
      margin-bottom:52px;
      text-shadow:0 2px 6px rgba(0,0,0,.18);
    }

    .care-box{
      width:100%;
      min-height:305px;
      display:grid;
      grid-template-columns:repeat(3, 1fr);
       border-radius:17px;
      overflow:hidden;
      backdrop-filter:blur(1px);
      -webkit-backdrop-filter:blur(1px);
      gap:20px;
    }

.care-item {
    min-height: 305px;
    padding: 70px 42px 54px;
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: rgba(38,38,38,.48);
    border-radius: 20px;
    border-bottom: 10px solid #009502;
}

    /* .care-item::after{
      content:"";
      position:absolute;
      left:0;
      right:0;
      bottom:0;
      height:5px;
      background:#00b812;
      border-radius:0 0 18px 18px;
    } */

    .care-icon{
      width:60px;
      height:58px;
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:12px;
      color:#00b812;
      font-size:46px;
    }

    .care-item:nth-child(2) .care-icon{
      font-size:42px;
    }

    .care-title{
      font-size:20px;
      line-height:1.25;
      font-weight:700;
      margin-bottom:13px;
      color:#fff;
    }

    .care-text{
      max-width:330px;
      font-family:Arial, sans-serif;
      font-size:17px;
      line-height:1.45;
      font-weight:400;
      color:#fff;
    }

    .care-actions{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:20px;
      margin-top:30px;
    }

    .care-btn{
      min-width:190px;
      height:47px;
      padding:0 28px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      text-decoration:none;
      font-family:Arial, sans-serif;
      font-size:15px;
      font-weight:700;
      transition:.25s ease;
      position:relative;
    }

    .care-btn.green{
      color:#fff;
      background:#00b812;
      border-radius:0 0 40px 40px;
      clip-path:polygon(
        0 0,
        93% 0,
        100% 100%,
        20% 100%,
        15% 96%,
        10% 88%,
        6% 76%,
        3% 60%,
        1% 40%
      );
    }

    .care-btn.white{
      color:#00a914;
      background:#fff;
      border-radius:0 0 40px 40px;
      clip-path:polygon(
        7% 0,
        92% 0,
        100% 100%,
        20% 100%,
        15% 96%,
        10% 88%,
        6% 76%,
        3% 60%,
        1% 40%
      );
    }

    .care-btn:hover{
      transform:translateY(-3px);
    }

    .care-btn.green:hover{
      background:#009f10;
    }

    .care-btn.white:hover{
      background:#f3f3f3;
    }

    @media(max-width:991px){

      .care-section{
        padding:60px 25px;
      }

      .care-heading{
        font-size:36px;
        margin-bottom:35px;
      }

      .care-box{
        grid-template-columns:1fr;
      }

      .care-item{
        min-height:auto;
        padding:45px 30px;
      }

      .care-item:not(:last-child){
        border-bottom:1px solid rgba(255,255,255,.14);
      }

      .care-item::after{
        height:4px;
      }
    }

    @media(max-width:575px){

      .care-section{
        padding:45px 15px;
      }

      .care-heading{
        font-size:29px;
      }

      .care-box{
        border-radius:14px;
      }

      .care-item{
        padding:38px 20px 42px;
      }

      .care-title{
        font-size:18px;
      }

      .care-text{
        font-size:15px;
      }

      .care-actions{
        flex-direction:column;
        gap:12px;
      }

      .care-btn{
        width:230px;
      }
    }
    
.companion-section {
    width: 100%;
    min-height: 770px;

    position: relative;

    display: flex;
    align-items: center;

    background-image:
        url("/assets/images/about-bg.webp");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    overflow: hidden;
}


/* =========================================
   LIGHT/DARK OVERLAY
========================================= */

.companion-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(255, 255, 255, 0.18);

    z-index: 1;
}


/* =========================================
   CONTAINER
========================================= */

.companion-container {
    width: 100%;
    max-width: 1140px;

    margin: 0 auto;

    padding: 0 30px;

    position: relative;

    z-index: 2;
}


/* =========================================
   CONTENT
========================================= */

.companion-content {
    width: 100%;
    max-width: 570px;

    margin-left: 0;
}


/* Heading */

.companion-content h2 {
    margin: 0 0 24px;

    color: #fff;

    font-size: 52px;

    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -1.2px;
}


/* Paragraph */

.companion-content p {
    width: 100%;
    max-width: 565px;

    margin: 0;

    color: #fff;

    font-size: 17px;

    line-height: 1.55;

    font-weight: 400;
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1440px) {

    .companion-section {
        min-height: 770px;
    }


    .companion-container {
        max-width: 1200px;
    }


    .companion-content {
        max-width: 580px;
    }

}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1200px) {

    .companion-section {
        min-height: 650px;
    }


    .companion-container {
        max-width: 1000px;

        padding-left: 40px;
        padding-right: 40px;
    }


    .companion-content {
        max-width: 520px;
    }


    .companion-content h2 {
        font-size: 46px;
    }


    .companion-content p {
        font-size: 16px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .companion-section {
        min-height: 580px;

        background-position: 58% center;
    }


    .companion-container {
        padding-left: 35px;
        padding-right: 35px;
    }


    .companion-content {
        max-width: 470px;
    }


    .companion-content h2 {
        font-size: 40px;

        line-height: 1.2;
    }


    .companion-content p {
        max-width: 450px;

        font-size: 15px;
    }


    .companion-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(255,255,255,0.75) 0%,
                rgba(255,255,255,0.42) 45%,
                rgba(255,255,255,0.08) 100%
            );
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .companion-section {
        min-height: 540px;

        align-items: flex-end;

        background-position: 62% center;
    }


    .companion-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(255,255,255,0.15) 0%,
                rgba(255,255,255,0.35) 45%,
                rgba(255,255,255,0.92) 100%
            );
    }


    .companion-container {
        padding:
            0
            25px
            42px;
    }


    .companion-content {
        width: 100%;
        max-width: 100%;
    }


    .companion-content h2 {
        margin-bottom: 18px;

        font-size: 35px;

        line-height: 1.15;
    }


    .companion-content p {
        max-width: 100%;

        font-size: 14px;

        line-height: 1.55;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .companion-section {
        min-height: 500px;

        background-position: 60% center;
    }


    .companion-container {
        padding:
            0
            18px
            30px;
    }


    .companion-content h2 {
        font-size: 30px;

        line-height: 1.18;

        letter-spacing: -0.5px;
    }


    .companion-content p {
        font-size: 13px;
    }

}
/* =========================================
   WHO WE ARE SECTION
========================================= */

.who-we-are-section {
    width: 100%;

    padding:
        45px
        30px
        65px;

    background: #ffffff;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.who-we-are-container {
    width: 100%;
    max-width: 1280px;

    min-height: 590px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        570px
        1fr;

    align-items: center;

    column-gap: 110px;
}


/* =========================================
   LEFT IMAGE AREA
========================================= */

.who-images {
    width: 100%;
    height: 590px;

    position: relative;
}


/* Shared Images */

.who-img {
    position: absolute;

    overflow: hidden;

    border-radius: 10px;

    background: #eeeeee;
}


.who-img img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* First Tall Image */

.who-img-one {
    width: 290px;
    height: 500px;

    top: 0;
    left: 0;

    z-index: 1;
}


.who-img-one img {
    object-position: center center;
}


/* Second Lower Image */

.who-img-two {
    width: 290px;
    height: 450px;
    right: -30px;
    bottom: 10px;
    z-index: 2;
}


.who-img-two img {
    object-position: center center;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.who-content {
    width: 100%;

    max-width: 620px;

    padding-top: 15px;
}


/* Heading */

.who-content h2 {
    margin:
        0
        0
        22px;

    color: #050505;
 

    font-size: 42px;

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.5px;
}


/* Paragraph */

.who-content p {
    margin:
        0
        0
        20px;

    color: #666666;
 

    font-size: 17px;

    line-height: 1.45;

    font-weight: 400;
}


/* =========================================
   BULLET LIST
========================================= */

.who-list {
    margin:
        2px
        0
        42px;

    padding: 0;

    list-style: none;
}


.who-list li {
    position: relative;

    margin-bottom: 14px;

    padding-left: 15px;

    color: #666666;

 

    font-size: 16px;

    line-height: 1.35;
}


.who-list li::before {
    content: "";

    width: 7px;
    height: 7px;

    position: absolute;

    top: 7px;
    left: 0;

    border-radius: 50%;

    background: #064db2;
}


/* =========================================
   CERTIFICATIONS
========================================= */

.certifications {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    align-items: center;

    gap: 42px;
}


.certification-item {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


.certification-item img {
    display: block;

    width: 100%;
    max-width: 150px;

    height: auto;

    object-fit: contain;
}


/* =========================================
   1200px
========================================= */

@media (max-width: 1200px) {

    .who-we-are-container {
        max-width: 1050px;

        grid-template-columns:
            500px
            1fr;

        column-gap: 70px;
    }


    .who-images {
        height: 550px;
    }


    .who-img-one {
        width: 255px;
        height: 470px;
    }


    .who-img-two {
        width: 255px;
        height: 420px;
    }


    .who-content h2 {
        font-size: 38px;
    }


    .who-content p {
        font-size: 16px;
    }


    .who-list li {
        font-size: 15px;
    }


    .certifications {
        gap: 25px;
    }


    .certification-item img {
        max-width: 135px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .who-we-are-section {
        padding:
            55px
            30px;
    }


    .who-we-are-container {
        min-height: auto;

        grid-template-columns: 1fr;

        row-gap: 50px;

        max-width: 760px;
    }


    .who-images {
        width: 100%;
        height: 570px;
    }


    .who-img-one {
        width: 48%;
        height: 500px;

        left: 3%;
    }


    .who-img-two {
        width: 48%;
        height: 450px;

        right: 3%;
    }


    .who-content {
        max-width: 100%;

        padding-top: 0;
    }


    .who-content h2 {
        font-size: 38px;
    }


    .certifications {
        max-width: 600px;

        margin: 0 auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .who-we-are-section {
        padding:
            40px
            20px;
    }


    .who-images {
        height: 470px;
    }


    .who-img-one {
        width: 56%;
        height: 400px;

        left: 0;
    }


    .who-img-two {
        width: 55%;
        height: 350px;

        right: 0;
    }


    .who-content h2 {
        font-size: 34px;

        margin-bottom: 18px;
    }


    .who-content p {
        font-size: 15px;

        line-height: 1.55;
    }


    .who-list {
        margin-bottom: 35px;
    }


    .who-list li {
        font-size: 15px;

        line-height: 1.45;
    }


    .certifications {
        gap: 15px;
    }


    .certification-item img {
        max-width: 115px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .who-we-are-section {
        padding:
            35px
            15px;
    }


    .who-images {
        height: 400px;
    }


    .who-img-one {
        width: 58%;
        height: 340px;

        border-radius: 8px;
    }


    .who-img-two {
        width: 58%;
        height: 295px;

        border-radius: 8px;
    }


    .who-content h2 {
        font-size: 31px;
    }


    .who-content p {
        font-size: 14px;
    }


    .who-list li {
        font-size: 14px;
    }


    .certifications {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .certification-item img {
        max-width: 155px;
    }

}
/* =========================================
   SPECIALIZED CARE SECTION
========================================= */

.specialized-care-section {
    width: 100%;
    padding: 50px 30px 50px;
    background: #b9e3bc;
}


/* Main Container */

.specialized-care-container {
    width: 100%;
    max-width: 1090px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    grid-template-areas:
        "top-content top-image"
        "main-image bottom-content";

    column-gap: 65px;
    row-gap: 42px;

    align-items: start;
}


/* =========================================
   TOP LEFT CONTENT
========================================= */

.specialized-top-content {
    grid-area: top-content;

    padding-top: 15px;
}


.specialized-top-content h2,
.specialized-bottom-content h2 {
    margin: 0 0 18px;

    color: #050505;

    font-family: "Fredoka", Arial, sans-serif;

    font-size: 25px;
    line-height: 1.15;

    font-weight: 700;
}


.specialized-top-content p {
    max-width: 480px;

    margin: 0 0 25px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
    line-height: 1.55;

    font-weight: 400;
}


/* =========================================
   LISTS
========================================= */

.specialized-top-content ul,
.specialized-bottom-content ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.specialized-top-content li,
.specialized-bottom-content li {
    position: relative;

    padding-left: 14px;

    color: #111111;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;
    line-height: 1.45;
}


.specialized-top-content li {
    margin-bottom: 13px;
}


.specialized-bottom-content li {
    margin-bottom: 13px;
}


.specialized-top-content li::before,
.specialized-bottom-content li::before {
    content: "";

    width: 5px;
    height: 5px;

    position: absolute;

    left: 0;
    top: 7px;

    background: #000000;

    border-radius: 50%;
}


/* =========================================
   TOP RIGHT IMAGE
========================================= */

.specialized-top-image {
    grid-area: top-image;

    width: 100%;
    height: 272px;

    overflow: hidden;
}


.specialized-top-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* =========================================
   LARGE BOTTOM LEFT IMAGE
========================================= */

.specialized-main-image {
    grid-area: main-image;

    width: 100%;

    overflow: hidden;
}


.specialized-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center top;
}


/* =========================================
   BOTTOM RIGHT CONTENT
========================================= */

.specialized-bottom-content {
    grid-area: bottom-content;

    align-self: center;

    padding-top: 30px;
}


.specialized-bottom-content h2 {
    margin-bottom: 22px;
}


.specialized-bottom-content ul {
    max-width: 500px;
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1400px) {

    .specialized-care-container {
        max-width: 1080px;
    }


    .specialized-top-image {
        height: 270px;
    }

}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1200px) {

    .specialized-care-container {
        max-width: 960px;

        column-gap: 45px;
        row-gap: 40px;
    }


    .specialized-top-image {
        height: 250px;
    }



    .specialized-top-content h2,
    .specialized-bottom-content h2 {
        font-size: 23px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .specialized-care-section {
        padding:
            55px
            30px;
    }


    .specialized-care-container {
        max-width: 720px;

        grid-template-columns: 1fr;

        grid-template-areas:
            "top-content"
            "top-image"
            "bottom-content"
            "main-image";

        row-gap: 35px;
    }


    .specialized-top-content,
    .specialized-bottom-content {
        width: 100%;

        padding-top: 0;
    }


    .specialized-top-image {
        height: 340px;
    }



    .specialized-bottom-content {
        align-self: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .specialized-care-section {
        padding:
            40px
            20px;
    }


    .specialized-care-container {
        row-gap: 28px;
    }


    .specialized-top-content h2,
    .specialized-bottom-content h2 {
        font-size: 24px;

        margin-bottom: 16px;
    }


    .specialized-top-content p {
        font-size: 14px;
    }


    .specialized-top-content li,
    .specialized-bottom-content li {
        font-size: 13px;

        line-height: 1.55;
    }


    .specialized-top-image {
        height: 260px;
    }


 

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .specialized-care-section {
        padding:
            35px
            15px;
    }


    .specialized-top-image {
        height: 220px;
    }





    .specialized-top-content h2,
    .specialized-bottom-content h2 {
        font-size: 22px;
    }

}
/* ========================================
   SPECIALIZED CARE PAGE
======================================== */

.specialized-page {
    width: 100%;
    overflow: hidden;
}


/* ========================================
   HERO
======================================== */

.sc-hero {
    width: 100%;
    height: 85vh;

    position: relative;

    overflow: hidden;
}


.sc-hero > img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center center;
}


.sc-hero-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.08);
}


.sc-hero-inner {
    width: 100%;
    max-width: 1100px;

    height: 100%;

    margin: 0 auto;

    padding: 0 25px;

    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
}


.sc-hero h1 {
    margin: 0;

    color: #ffffff;

 
    font-size: 34px;

    line-height: 1.1;

    font-weight: 600;

    text-shadow:
        0 2px 5px
        rgba(0, 0, 0, 0.25);
}


/* ========================================
   COMMON SECTION
======================================== */

.sc-section {
    width: 100%;

    padding:
        70px
        25px;
}


.sc-container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
}


/* Background Colors */

.sc-white {
    background: #ffffff;
}


.sc-blue {
    background: #94abd7;
}


.sc-green {
    background: #b8e4ba;
}


/* ========================================
   TWO COLUMN LAYOUT
======================================== */

.sc-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    align-items: center;

    gap: 65px;
}


/* ========================================
   TYPOGRAPHY
======================================== */

.sc-content h2 {
    margin:
        0
        0
        18px;

    color: #080808;
 
    font-size: 31px;

    line-height: 1.12;

    font-weight: 700;
}


.sc-content p {
    margin:
        0
        0
        17px;

    color: #111111;
 
    font-size: 14px;

    line-height: 1.62;

    font-weight: 400;
}


.sc-content ul {
    margin:
        5px
        0
        17px;

    padding-left: 18px;
}


.sc-content ul li {
    margin-bottom: 8px;

    color: #111111;

     font-size: 14px;

    line-height: 1.55;
}


.sc-subheading {
    font-size: 12px !important;

    font-weight: 600 !important;
}


/* ========================================
   IMAGES
======================================== */

.sc-image {
    width: 100%;
    height: 355px;

    overflow: hidden;

    border-radius: 6px;
}


.sc-image-small {
    max-width: 390px;

    height: 285px;
}


.sc-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform
        0.4s ease;
}


.sc-image:hover img {
    transform: scale(1.02);
}


/* ========================================
   BUTTONS
======================================== */

.sc-btn {
  border-radius: 0px 62px 0px 62px;
    min-width: 145px;
    height: 38px;

    margin-top: 7px;

    padding:
        0
        21px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

 
    color: #ffffff;

 
    font-size: 11px;

    font-weight: 600;

    line-height: 1;

    text-decoration: none;

    transition:
        background-color
        0.2s ease,
        transform
        0.2s ease;
}


.sc-btn-green {
    background: #00a900;
}


.sc-btn-blue {
    background: #064ca9;
}


.sc-btn:hover {
    color: #ffffff;

    transform: translateY(-1px);
}


.sc-btn-green:hover {
    background: #078d16;
}


.sc-btn-blue:hover {
    background: #053d88;
}


/* ========================================
   POST SURGICAL CARD
======================================== */

.sc-feature-card {
    width: 100%;

    max-width: 900px;

    min-height: 530px;

    margin: 0 auto;

    padding:
        30px
        30px
        30px
        35px;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 35px;

    align-items: stretch;

    background: #ffffff;

    border: 1px solid #cccccc;

    box-shadow:
        0 2px 9px
        rgba(0, 0, 0, 0.17);
}


.sc-feature-card .sc-content {
    padding-top: 5px;
}


.sc-card-image {
    width: 100%;
    height: 100%;

    min-height: 470px;

    overflow: hidden;
}


.sc-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* ========================================
   LARGE DESKTOP
======================================== */

@media (min-width: 1440px) {

    .sc-container {
        max-width: 1120px;
    }


    .sc-hero-inner {
        max-width: 1120px;
    }

}


/* ========================================
   LAPTOP
======================================== */

@media (max-width: 1200px) {

    .sc-container {
        max-width: 960px;
    }


    .sc-hero-inner {
        max-width: 960px;
    }


    .sc-hero {
        height: 440px;
    }


    .sc-grid {
        gap: 50px;
    }


    .sc-content h2 {
        font-size: 28px;
    }

}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .sc-section {
        padding:
            55px
            30px;
    }


    .sc-hero {
        height: 390px;
    }


    .sc-hero-inner {
        padding:
            0
            35px;
    }


    .sc-hero h1 {
        font-size: 30px;
    }


    .sc-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .sc-image,
    .sc-image-small {
        width: 100%;

        max-width: 100%;

        height: 420px;
    }


    .sc-feature-card {
        grid-template-columns: 1fr;

        max-width: 700px;

        padding: 30px;
    }


    .sc-card-image {
        min-height: 450px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

    .sc-hero {
        height: 300px;
    }


    .sc-hero > img {
        object-position: 57% center;
    }


    .sc-hero-inner {
        padding:
            0
            20px;
    }


    .sc-hero h1 {
        font-size: 27px;
    }


    .sc-section {
        padding:
            42px
            20px;
    }


    .sc-grid {
        gap: 27px;
    }


    .sc-content h2 {
        font-size: 25px;

        margin-bottom: 15px;
    }


    .sc-content p {
        font-size: 13px;

        line-height: 1.6;
    }


    .sc-content ul li {
        font-size: 13px;
    }


    .sc-image,
    .sc-image-small {
        height: 320px;
    }


    .sc-feature-card {
        padding: 20px;

        gap: 25px;
    }


    .sc-card-image {
        min-height: 360px;
    }


    .sc-btn {
        height: 37px;

        min-width: 140px;

        font-size: 10px;
    }

}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 420px) {

    .sc-hero {
        height: 260px;
    }


    .sc-hero h1 {
        font-size: 24px;
    }


    .sc-section {
        padding:
            35px
            15px;
    }


    .sc-content h2 {
        font-size: 23px;
    }


    .sc-image,
    .sc-image-small {
        height: 280px;
    }


    .sc-card-image {
        min-height: 310px;
    }

}/* =========================================
   CORE VALUES SECTION
========================================= */

.core-values-section {
    width: 100%;
    padding: 18px 20px;
    background: #ffffff;
}


/* Outer White Area */

.core-values-wrapper {
    width: 100%;
    max-width: 960px;

    margin: 0 auto;

    padding: 34px 30px 38px;

    background: #fdfdfd;

    border-radius: 8px;

    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.03);
}


/* Heading */

.core-values-wrapper h2 {
    margin: 0 0 26px;

    text-align: center;

    color: #050505;


    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}


/* List */

.core-values-list {
    width: 100%;
    max-width: 570px;

    margin: 0 auto;
}


/* Single Card */

.core-value-card {
    width: 100%;
    min-height: 140px;

    margin-bottom: 18px;

    padding: 34px 32px 28px;

    background: #2159a8;

    border-radius: 12px;

    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.18);
}

.core-value-card:last-child {
    margin-bottom: 0;
}


/* Card Title */

.core-value-card h3 {
    margin: 0 0 12px;

    color: #ffffff;


    font-size: 23px;
    line-height: 1.2;
    font-weight: 600;
}


/* Card Text */

.core-value-card p {
    margin: 0;

    color: #ffffff;


    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .core-values-wrapper {
        padding: 30px 24px 34px;
    }

    .core-values-wrapper h2 {
        font-size: 25px;
        margin-bottom: 24px;
    }

    .core-values-list {
        max-width: 100%;
    }

    .core-value-card {
        min-height: 130px;
        padding: 28px 25px 24px;
    }

    .core-value-card h3 {
        font-size: 21px;
    }

    .core-value-card p {
        font-size: 14px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .core-values-section {
        padding: 15px;
    }

    .core-values-wrapper {
        padding: 25px 16px 28px;
        border-radius: 6px;
    }

    .core-values-wrapper h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .core-value-card {
        min-height: auto;
        margin-bottom: 15px;
        padding: 24px 18px 20px;
        border-radius: 10px;
    }

    .core-value-card h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .core-value-card p {
        font-size: 13px;
        line-height: 1.55;
    }

}
/* =========================================
   QUALITY CARE SECTION
========================================= */

.quality-care-section {
    width: 100%;
    padding: 48px 30px 48px;
    background: #b9e3bc;
}


/* Main Container */

.quality-care-container {
    width: 100%;
    max-width: 1025px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    grid-template-areas:
        "content image"
        "cards cards";

    column-gap: 70px;
    row-gap: 64px;

    align-items: center;
}


/* =========================================
   TOP LEFT CONTENT
========================================= */

.quality-care-content {
    grid-area: content;

    max-width: 430px;

    padding-left: 24px;
}


.quality-care-content h2 {
    margin: 0 0 18px;

    color: #050505;


    font-size: 25px;
    line-height: 1.2;

    font-weight: 700;
}


.quality-care-content p {
    margin: 0;

    color: #111111;


    font-size: 14px;
    line-height: 1.45;

    font-weight: 400;
}


/* =========================================
   TOP RIGHT IMAGE
========================================= */

.quality-care-image {
    grid-area: image;

    width: 100%;
    height: 335px;

    overflow: hidden;
}


.quality-care-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* =========================================
   BOTTOM CARDS
========================================= */

.quality-care-cards {
    grid-area: cards;

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;
}


/* Individual Card */

.quality-card {
    min-height: 205px;

    padding:
        39px
        40px
        34px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background: #2159a8;

    border-radius: 9px;

    box-shadow:
        0 15px 30px
        rgba(0, 0, 0, 0.12);
}


/* Card Heading */

.quality-card h3 {
    margin: 0 0 20px;

    color: #ffffff;


    font-size: 27px;
    line-height: 1.1;

    font-weight: 700;
}


/* Card Text */

.quality-card p {
    max-width: 445px;

    margin: 0;

    color: #ffffff;


    font-size: 14px;
    line-height: 1.4;

    font-weight: 400;
}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1100px) {

    .quality-care-container {
        max-width: 900px;

        column-gap: 50px;
    }


    .quality-care-content {
        padding-left: 0;
    }


    .quality-care-image {
        height: 300px;
    }


    .quality-card {
        padding:
            35px
            30px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .quality-care-section {
        padding:
            50px
            25px;
    }


    .quality-care-container {
        grid-template-columns: 1fr;

        grid-template-areas:
            "content"
            "image"
            "cards";

        row-gap: 35px;
    }


    .quality-care-content {
        max-width: 100%;
    }


    .quality-care-content h2 {
        font-size: 25px;
    }


    .quality-care-content p {
        max-width: 600px;
    }


    .quality-care-image {
        height: 380px;
    }


    .quality-care-cards {
        gap: 18px;
    }


    .quality-card {
        min-height: 190px;
    }


    .quality-card h3 {
        font-size: 24px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .quality-care-section {
        padding:
            40px
            18px;
    }


    .quality-care-container {
        row-gap: 28px;
    }


    .quality-care-content h2 {
        font-size: 23px;
    }


    .quality-care-content p {
        font-size: 14px;
        line-height: 1.55;
    }


    .quality-care-image {
        height: 280px;
    }


    .quality-care-cards {
        grid-template-columns: 1fr;
    }


    .quality-card {
        min-height: 180px;

        padding:
            30px
            22px;
    }


    .quality-card h3 {
        font-size: 24px;

        margin-bottom: 16px;
    }


    .quality-card p {
        font-size: 13px;

        line-height: 1.5;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .quality-care-section {
        padding:
            35px
            15px;
    }


    .quality-care-image {
        height: 235px;
    }


    .quality-care-content h2 {
        font-size: 21px;
    }


    .quality-card {
        min-height: 165px;
    }


    .quality-card h3 {
        font-size: 22px;
    }

}
/* =========================================
   CORE SERVICES PAGE
========================================= */

.core-services-page {
    width: 100%;
    overflow: hidden;
}


/* =========================================
   HERO
========================================= */

.cs-hero {
    width: 100%;
    height: 85vh;

    position: relative;

    overflow: hidden;
}


.cs-hero > img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;
}


.cs-hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.08);
}


.cs-hero-inner {
    width: 100%;
    max-width: 1070px;
    height: 100%;

    position: absolute;
    inset: 0;

    margin: 0 auto;

    padding: 0 25px;

    display: flex;
    align-items: center;
}


.cs-hero h1 {
    margin: 0;

    color: #ffffff;


    font-size: 34px;
    line-height: 1;

    font-weight: 700;

    text-transform: uppercase;

    text-shadow:
        0 2px 5px
        rgba(0, 0, 0, 0.18);
}


/* =========================================
   COMMON SECTION
========================================= */

.cs-section {
    width: 100%;

    padding:
        70px
        25px;
}


.cs-white {
    background: #ffffff;
}


.cs-light-green {
    background: #bae5bd;
}


.cs-container {
    width: 100%;
    max-width: 1060px;

    margin: 0 auto;
}


/* =========================================
   TYPOGRAPHY
========================================= */

.cs-content h2,
.cs-companion-card h2 {
    margin: 0 0 18px;

    color: #050505;


    font-size: 30px;
    line-height: 1.15;

    font-weight: 700;
}


.cs-content p {
    margin: 0 0 18px;

    color: #111111;


    font-size: 14px;
    line-height: 1.55;
}


.cs-content h3 {
    margin:
        22px
        0
        12px;

    color: #111111;


    font-size: 17px;

    font-weight: 600;
}


.cs-intro {
    margin-bottom: 17px !important;

    font-size: 13px !important;
}


/* =========================================
   PERSONAL CARE
========================================= */

.cs-personal-grid {
    display: grid;

    grid-template-columns:
        500px
        1fr;

    gap: 68px;

    align-items: center;
}


.cs-personal-images {
    width: 100%;

    display: grid;

    grid-template-columns:
        1.1fr
        1fr;

    gap: 15px;
}


.cs-personal-main {
    height: 440px;

    overflow: hidden;

    border-radius: 7px;
}


.cs-personal-side {
    display: grid;

    grid-template-rows:
        1fr
        1fr;

    gap: 15px;
}


.cs-personal-side img {
    width: 100%;
    height: 212px;

    display: block;

    object-fit: cover;

    border-radius: 5px;
}


.cs-personal-main img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================
   BLUE BULLET LIST
========================================= */

.cs-blue-list {
    margin:
        0
        0
        22px;

    padding: 0;

    list-style: none;
}


.cs-blue-list li {
    position: relative;

    margin-bottom: 9px;

    padding-left: 17px;

    color: #111111;


    font-size: 13px;
    line-height: 1.4;
}


.cs-blue-list li::before {
    content: "";

    width: 5px;
    height: 5px;

    position: absolute;

    left: 1px;
    top: 7px;

    border-radius: 50%;

    background: #0753b8;
}


/* =========================================
   BUTTON
========================================= */

.cs-btn {
    min-width: 150px;
    height: 40px;

    padding:
        0
        22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;


    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    border-radius:
0px 70px 0px 90px

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


.cs-btn-green {
    background: #00a900;
}


.cs-btn:hover {
    color: #ffffff;

    background: #078d16;

    transform: translateY(-1px);
}


/* =========================================
   TWO COLUMN SECTIONS
========================================= */

.cs-two-column {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 65px;

    align-items: center;
}


/* =========================================
   COMPANIONSHIP CARD
========================================= */

.cs-companion-card {
    min-height: 350px;

    padding:
        60px
        42px;

    background: #8ca08d;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.cs-companion-card h2 {
    color: #ffffff;

    font-size: 29px;
}


.cs-companion-card p {
    margin:
        0
        0
        20px;

    color: #ffffff;


    font-size: 13px;
    line-height: 1.45;
}


/* =========================================
   CHECK LIST
========================================= */

.cs-check-list {
    margin: 0;
    padding: 0;

    list-style: none;
}


.cs-check-list li {
    position: relative;

    margin-bottom: 10px;

    padding-left: 19px;

    color: #ffffff;


    font-size: 13px;

    line-height: 1.45;
}


.cs-check-list li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: #00b729;

    font-size: 14px;

    font-weight: 700;
}


.cs-check-list.dark li {
    color: #111111;
}


/* =========================================
   STANDARD IMAGES
========================================= */

.cs-image {
    width: 100%;
    height: 390px;

    overflow: hidden;
}


.cs-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* =========================================
   BOTTOM SERVICE GRID
========================================= */

.cs-service-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px 60px;
}


.cs-service-card {
    min-height: 335px;

    position: relative;

    overflow: hidden;

    background-size: cover;

    background-position: center;
    background-repeat: no-repeat;
}


.cs-card-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.46) 0%,
            rgba(0, 0, 0, 0.22) 60%,
            rgba(0, 0, 0, 0.08) 100%
        );
}


.cs-card-content {
    width: 100%;
    height: 100%;

    position: absolute;

    inset: 0;

    padding:
        100px
        40px
        30px;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    z-index: 2;
}


.cs-card-content h3 {
    margin: 0 0 20px;

    color: #ffffff;


    font-size: 23px;
    line-height: 1.15;

    font-weight: 600;
}


.cs-card-content ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.cs-card-content li {
    position: relative;

    margin-bottom: 10px;

    padding-left: 18px;

    color: #ffffff;


    font-size: 12px;
    line-height: 1.4;
}


.cs-card-content li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: #ffffff;

    font-weight: 700;
}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1100px) {

    .cs-container {
        max-width: 920px;
    }


    .cs-hero-inner {
        max-width: 920px;
    }


    .cs-personal-grid {
        grid-template-columns:
            460px
            1fr;

        gap: 50px;
    }


    .cs-service-grid {
        gap:
            18px
            35px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .cs-hero {
        height: 400px;
    }


    .cs-section {
        padding:
            55px
            30px;
    }


    .cs-personal-grid,
    .cs-two-column {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .cs-personal-images {
        max-width: 650px;

        margin: 0 auto;
    }


    .cs-content {
        width: 100%;
    }


    .cs-companion-card {
        min-height: 300px;
    }


    .cs-image {
        height: 460px;
    }


    .cs-service-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .cs-service-card {
        min-height: 400px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .cs-hero {
        height: 300px;
    }


    .cs-hero > img {
        object-position: 52% center;
    }


    .cs-hero h1 {
        font-size: 26px;
    }


    .cs-section {
        padding:
            42px
            20px;
    }


    .cs-personal-images {
        grid-template-columns:
            1fr
            1fr;

        gap: 10px;
    }


    .cs-personal-main {
        height: 330px;
    }


    .cs-personal-side {
        gap: 10px;
    }


    .cs-personal-side img {
        height: 160px;
    }


    .cs-content h2,
    .cs-companion-card h2 {
        font-size: 25px;
    }


    .cs-image {
        height: 320px;
    }


    .cs-companion-card {
        min-height: auto;

        padding:
            40px
            25px;
    }


    .cs-service-card {
        min-height: 330px;
    }


    .cs-card-content {
        padding:
            80px
            25px
            25px;
    }


    .cs-card-content h3 {
        font-size: 21px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .cs-section {
        padding:
            35px
            15px;
    }


    .cs-personal-main {
        height: 290px;
    }


    .cs-personal-side img {
        height: 140px;
    }


    .cs-content h2,
    .cs-companion-card h2 {
        font-size: 23px;
    }


    .cs-image {
        height: 280px;
    }


    .cs-service-card {
        min-height: 290px;
    }


    .cs-card-content {
        padding:
            60px
            20px
            20px;
    }

}

      /* ==========================================
   CAREGIVER JOBS PAGE
========================================== */

.caregiver-jobs-page {
    width: 100%;
    overflow: hidden;
}


/* ==========================================
   HERO
========================================== */

.cj-hero {
    width: 100%;
    height: 85vh;

    position: relative;

    overflow: hidden;
}


.cj-hero > img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;
}


.cj-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        rgba(0, 0, 0, 0.06);
}


.cj-hero-inner {
    width: 100%;
    max-width: 1080px;
    height: 100%;

    position: absolute;

    inset: 0;

    margin: 0 auto;

    padding: 0 30px;

    display: flex;
    align-items: center;
}


.cj-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: 32px;

    line-height: 1;

    font-weight: 700;

    text-shadow:
        0 2px 5px
        rgba(0, 0, 0, 0.2);
}



/* ==========================================
   WHAT YOU'LL DO
========================================== */

.cj-work-section {
    width: 100%;
    min-height: 70vh;
    position: relative;
    padding: 50px
        25px;
    background-size: cover;
    background-position: center 45%;
    overflow: hidden;
    margin-top: 50px;
}


.cj-work-container {
    width: 100%;
    max-width: 780px;

    margin: 0 auto;

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 50px;
}


.cj-work-card {
    min-height: 210px;

    padding:
        60px
        35px
        35px;

    background:
        rgba(74, 74, 74, 0.62);

    color: #ffffff;
}


.cj-work-card h2 {
    margin: 0 0 18px;

    font-size: 25px;

    line-height: 1.1;
color:#fff;
    font-weight: 600;
}


.cj-work-card p {
    margin: 0;

    color: #ffffff;

    font-size: 13px;

    line-height: 1.5;
}



/* ==========================================
   PROMISE
========================================== */

.cj-promise-section {
    width: 100%;

    padding:
        62px
        25px
        70px;

    background: #ffffff;
}


.cj-promise-heading {
    margin-bottom: 50px;

    text-align: center;
}


.cj-promise-heading h2 {
    margin: 0 0 8px;

    color: #050505;

    font-size: 27px;

    font-weight: 700;
}


.cj-promise-heading p {
    margin: 0;

    color: #111111;

    font-size: 12px;
}



/* Standard card */

.cj-standard-card {
    width: 100%;
    max-width: 720px;

    min-height: 260px;

    margin: 0 auto;

    position: relative;

    padding:
        45px
        300px
        40px
        42px;

    background: #ffffff;

    border: 1px solid #d3d3d3;

    box-shadow:
        0 2px 10px
        rgba(0, 0, 0, 0.22);
}


.cj-standard-content h2 {
    margin: 0 0 17px;

    color: #050505;

    font-size: 23px;

    font-weight: 700;
}


.cj-standard-content p {
    margin: 0 0 22px;

    color: #111111;

    font-size: 12px;

    line-height: 1.5;
}


.cj-standard-content ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


.cj-standard-content li {
    position: relative;

    margin-bottom: 8px;

    padding-left: 17px;

    color: #111111;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;
}


.cj-standard-content li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: #00a900;

    font-weight: 700;
}



/* Team Image */

.cj-standard-image {
    width: 280px;
    height: 280px;

    position: absolute;

    top: -8px;
    right: 35px;

    overflow: hidden;
}


.cj-standard-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}



/* ==========================================
   APPLICATION SECTION
========================================== */
.cj-apply-section {
    width: 100%;
    min-height: 70vh;
    background-image: url("/assets/images/5465489.jpg");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.cj-apply-container {
    width: 100%;
    max-width: 1080px;

    min-height: 500px;

    margin: 0 auto;

    position: relative;

    display: flex;
    align-items: flex-end;
}



/* ==========================================
   FORM CARD
========================================== */

.cj-form-card {
    width: 390px;

    margin:
        55px
        0
        -20px
        120px;

    padding:
        30px
        27px
        28px;

    position: relative;

    z-index: 5;

    background:
        rgba(255, 255, 255, 0.88);

    border-radius: 5px;

    box-shadow:
        0 8px 23px
        rgba(0, 0, 0, 0.08);
}


.cj-form-card h2 {
    margin: 0 0 13px;

    color: #050505;
    font-size: 22px;

    font-weight: 700;
}


.cj-form-card > p {
    margin: 0 0 22px;

    color: #111111;

    font-size: 12px;

    line-height: 1.45;
}



/* ==========================================
   FORM
========================================== */

.cj-form {
    width: 100%;
}


.cj-form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;
}


.cj-field {
    margin-bottom: 12px;
}


.cj-field label {
    display: block;

    margin-bottom: 5px;

    color: #111111;

    font-size: 11px;

    font-weight: 600;
}


.cj-field input[type="text"],
.cj-field input[type="email"],
.cj-field input[type="tel"],
.cj-field textarea {

    width: 100%;

    border:
        1px solid
        #d8d8d8;

    outline: none;

    background: #ffffff;

    color: #111111;

    font-size: 11px;

    border-radius: 5px;
}


.cj-field input[type="text"],
.cj-field input[type="email"],
.cj-field input[type="tel"] {

    height: 35px;

    padding:
        0
        10px;
}


.cj-field textarea {
    min-height: 105px;

    resize: vertical;

    padding:
        10px;
}


.cj-field input:focus,
.cj-field textarea:focus {

    border-color:
        #00a900;
}



.cj-field input[type="file"] {
    width: 100%;

    font-size: 10px;
}


.cj-field small {
    display: block;

    margin-top: 4px;

    color: #777777;

    font-size: 9px;
}



/* Submit */

.cj-submit {
    min-width: 135px;

    height: 38px;

    padding:
        0
        22px;

    border: 0;

    border-radius:
        30px
        30px
        0
        30px;

    background: #00a900;

    color: #ffffff;

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;

    transition:
        background-color
        0.2s ease;
}


.cj-submit:hover {
    background: #078c15;
}



/* ==========================================
   NURSE IMAGE
========================================== */

.cj-apply-image {
    width: 520px;
    height: 500px;

    position: absolute;

    right: -10px;
    bottom: 0;

    overflow: hidden;
}


.cj-apply-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    object-position:
        center bottom;
}



/* ==========================================
   ALERTS
========================================== */

.cj-alert {
    margin-bottom: 18px;

    padding:
        10px
        12px;

    border-radius: 4px;

    font-size: 11px;

    line-height: 1.4;
}


.cj-success {
    background: #e9f9ea;

    border:
        1px solid
        #00a900;

    color: #08740f;
}


.cj-error {
    background: #fff0f0;

    border:
        1px solid
        #d74040;

    color: #b32020;
}


.cj-hidden-field {
    position: absolute;

    left: -99999px;

    width: 1px;
    height: 1px;

    overflow: hidden;
}



/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1100px) {

    .cj-hero {
        height: 450px;
    }


    .cj-standard-card {
        max-width: 700px;
    }


    .cj-form-card {
        margin-left: 50px;
    }


    .cj-apply-image {
        width: 500px;
    }

}



/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .cj-hero {
        height: 390px;
    }


    .cj-work-container {
        max-width: 690px;

        gap: 25px;
    }


    .cj-work-card {
        padding:
            45px
            27px
            30px;
    }


    .cj-standard-card {
        max-width: 650px;

        padding-right: 270px;
    }


    .cj-standard-image {
        width: 245px;
        height: 245px;

        right: 20px;
    }


    .cj-apply-container {
        min-height: 520px;
    }


    .cj-form-card {
        width: 370px;

        margin-left: 25px;
    }


    .cj-apply-image {
        width: 430px;
    }

}



/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .cj-hero {
        height: 300px;
    }


    .cj-hero > img {
        object-position:
            center center;
    }


    .cj-hero-inner {
        padding:
            0
            20px;
    }


    .cj-hero h1 {
        font-size: 26px;
    }


    .cj-work-section {
        padding:
            35px
            20px;
    }


    .cj-work-container {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .cj-work-card {
        min-height: auto;

        padding:
            32px
            25px;
    }


    .cj-work-card h2 {
        font-size: 23px;
    }


    .cj-promise-section {
        padding:
            45px
            18px;
    }


    .cj-standard-card {
        padding:
            28px;

        display: flex;

        flex-direction: column;

        gap: 25px;
    }


    .cj-standard-image {
        width: 100%;
        height: 300px;

        position: relative;

        top: auto;
        right: auto;
    }


    .cj-apply-section {
        padding:
            40px
            18px
            0;
    }


    .cj-apply-container {
        min-height: auto;

        display: flex;

        flex-direction: column;

        align-items: center;
    }


    .cj-form-card {
        width: 100%;
        max-width: 430px;

        margin: 0;

        position: relative;
    }


    .cj-apply-image {
        width: 100%;
        max-width: 430px;

        height: 410px;

        position: relative;

        right: auto;
        bottom: auto;

        margin-top: 25px;
    }

}



/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .cj-hero {
        height: 250px;
    }


    .cj-promise-heading h2 {
        font-size: 24px;
    }


    .cj-standard-image {
        height: 250px;
    }


    .cj-form-card {
        padding:
            25px
            20px;
    }


    .cj-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .cj-form-card h2 {
        font-size: 21px;
    }


    .cj-apply-image {
        height: 350px;
    }

}
/* =========================================
   BLOG CARDS SECTION
========================================= */

.blog-cards-section {
    width: 100%;
    padding: 60px 25px 70px;
    background: #f2f2f2;
}

.blog-cards-container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}


/* =========================================
   SINGLE CARD
========================================= */

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.blog-card-image-wrap {
    position: relative;
    width: 100%;
    height: 310px;
    overflow: hidden;
}

.blog-card-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}


/* Badge */

.blog-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 34px;
    padding: 0 18px;

    background: #00a900;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    border-radius: 8px;

    z-index: 2;
}


/* Content */

.blog-card-content {
    padding: 24px 24px 22px;
}

.blog-card-content h3 {
    margin: 0 0 14px;
    color: #050505;

    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 16px;
}

.blog-card-meta span {
    color: #777777;
    font-size: 14px;
    line-height: 1.4;
}

.blog-card-content p {
    min-height: 95px;
    margin: 0 0 22px;

    color: #666666;
    font-size: 16px;
    line-height: 1.55;
}


/* Button */

.blog-card-btn {
    width: 100%;
    max-width: 265px;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #0f43ad;
    color: #ffffff;

    font-size: 18px;
    font-weight: 700;

    text-decoration: none;

    border-radius: 0 40px 0 40px;

    transition: background 0.2s ease, transform 0.2s ease;
}

.blog-card-btn:hover {
    background: #09388f;
    color: #ffffff;
    transform: translateY(-1px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
    .blog-cards-container {
        gap: 22px;
    }

    .blog-card-image-wrap {
        height: 280px;
    }

    .blog-card-content h3 {
        font-size: 20px;
    }

    .blog-card-content p {
        font-size: 15px;
    }

    .blog-card-btn {
        max-width: 240px;
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    .blog-cards-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .blog-cards-section {
        padding: 40px 18px 45px;
    }

    .blog-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card-image-wrap {
        height: 250px;
    }

    .blog-card-content {
        padding: 20px 18px 20px;
    }

    .blog-card-content h3 {
        font-size: 21px;
    }

    .blog-card-meta span {
        font-size: 13px;
    }

    .blog-card-content p {
        min-height: auto;
        font-size: 14px;
    }

    .blog-card-btn {
        max-width: 220px;
        height: 44px;
        font-size: 15px;
    }
}
/* =========================================
   CARE TABS SECTION
========================================= */

.care-tabs-section {
    width: 100%;
    padding: 45px 25px 55px;
    background: #ffffff;
}

.care-tabs-container {
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 24px;

    align-items: start;
}


/* =========================================
   LEFT TABS
========================================= */

.care-tabs-nav {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 15px;
}

.care-tab-btn {
    width: 100%;
    min-height: 38px;

    padding: 9px 15px;

    border: 0;
    background: #f0f1f2;

    color: #111111;

    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;

    text-align: center;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.care-tab-btn:hover {
    background: #e5e5e5;
}

.care-tab-btn.active {
    background: #00a900;
    color: #ffffff;
    font-weight: 700;
}

.care-tab-icon {
    margin-right: 6px;
    font-size: 14px;
}


/* =========================================
   RIGHT PANELS
========================================= */

.care-tabs-content {
    width: 100%;
}

.care-tab-panel {
    display: none;
}

.care-tab-panel.active {
    display: block;
}


/* =========================================
   ACCORDION
========================================= */

.care-accordion-item {
    width: 100%;
    margin-bottom: 25px;
}

.care-accordion-title {
    width: 100%;
    min-height: 36px;

    padding: 9px 10px;

    display: flex;
    align-items: center;

    border: 0;
    border-radius: 6px 6px 0 0;

    background: #00a900;
    color: #ffffff;

    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;

    text-align: left;

    cursor: pointer;
}

.accordion-symbol {
    width: 18px;
    margin-right: 2px;

    display: inline-block;

    font-size: 20px;
    line-height: 1;

    font-weight: 700;
}


/* Content */

.care-accordion-content {
    display: none;

    padding: 24px 24px 20px;

    border:
        1px solid
        #d5d9dc;

    border-top: 0;

    border-radius: 0 0 6px 6px;

    background: #ffffff;
}

.care-accordion-item.open
.care-accordion-content {
    display: block;
}

.care-accordion-content p {
    margin: 0 0 16px;

    color: #111111;


    font-size: 14px;
    line-height: 1.55;
}

.care-accordion-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .care-tabs-container {
        grid-template-columns: 240px 1fr;
        gap: 18px;
    }

    .care-tab-btn {
        font-size: 12px;
    }

    .care-accordion-title {
        font-size: 13px;
    }

    .care-accordion-content p {
        font-size: 13px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .care-tabs-section {
        padding:
            35px
            18px;
    }

    .care-tabs-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .care-tabs-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .care-tab-btn {
        min-height: 45px;
        padding: 10px 8px;
        font-size: 11px;
    }

    .care-accordion-title {
        min-height: 42px;
        padding: 10px 12px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .care-tabs-nav {
        grid-template-columns: 1fr;
    }

    .care-tab-btn {
        width: 100%;
        font-size: 12px;
    }

    .care-accordion-content {
        padding: 18px 15px;
    }

}
/* =========================================
   ACCORDION CHECK LIST
========================================= */

.care-check-list {
    margin: 15px 0 18px;
    padding: 0;

    list-style: none;
}

.care-check-list li {
    position: relative;

    margin-bottom: 12px;

    padding-left: 20px;

    color: #666666;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
    line-height: 1.5;
}

.care-check-list li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: #00a900;

    font-size: 16px;
    font-weight: 700;
}

.care-check-list li:last-child {
    margin-bottom: 0;
}
/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {
    width: 100%;
}


/* =========================================
   MAIN CONTACT SECTION
========================================= */

.contact-main-section {
    width: 100%;

    padding:
        40px
        25px
        80px;

    background: #f1fbfc;
}


.contact-main-container {
    width: 100%;
    max-width: 950px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.2fr
        0.9fr;

    gap: 70px;

    align-items: start;
}


/* =========================================
   LEFT SIDE
========================================= */

.contact-info-area h1 {
    margin: 0 0 20px;

    color: #050505;

    font-family: "Fredoka", Arial, sans-serif;

    font-size: 31px;
    line-height: 1.1;

    font-weight: 700;
}


.contact-intro {
    max-width: 490px;

    margin: 0 0 30px;

    color: #666666;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    line-height: 1.45;
}


/* =========================================
   CONTACT GRID
========================================= */

.contact-info-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    column-gap: 38px;
    row-gap: 46px;
}


.contact-info-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;
}


/* Icon */

.contact-icon-box {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #073fa8;

    border-radius: 5px;

    color: #ffffff;

    font-size: 22px;
}


.contact-info-text h3 {
    margin: 0 0 6px;

    color: #050505;

    font-size: 15px;

    line-height: 1.2;

    font-weight: 700;

    text-decoration: underline;
}


.contact-info-text p,
.contact-info-text a {
    margin: 0;

    color: #050505;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 13px;

    line-height: 1.5;

    text-decoration: none;
}


.contact-info-text a:hover {
    color: #00a900;
}


/* =========================================
   SOCIAL
========================================= */

.contact-social {
    margin-top: 48px;

    padding-top: 28px;

    border-top:
        1px dashed
        #cbd9dc;
}


.contact-social h3 {
    margin:
        0
        0
        18px;

    color: #050505;

    font-family:
        "Fredoka",
        Arial,
        sans-serif;

    font-size: 17px;
}


.contact-social-links {
    display: flex;

    gap: 9px;
}


.contact-social-links a {
    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        #96afe0;

    border-radius: 6px;

    color: #0742aa;

    background: transparent;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.contact-social-links a:hover {
    background: #0742aa;
    color: #ffffff;
}

.contact-form-card form {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
}

/* =========================================
   FORM CARD
========================================= */

.contact-form-card {
    width: 100%;

    padding:
        37px
        35px
        45px;

    background: #ffffff;

    border-radius: 7px;

    box-shadow:
        0 12px 28px
        rgba(0, 0, 0, 0.09);
}


.contact-form-card h2 {
    margin:
        0
        0
        20px;

    color: #050505;

    font-family:
        "Fredoka",
        Arial,
        sans-serif;

    font-size: 29px;

    line-height: 1.15;

    font-weight: 700;
}



/* =========================================
   FORM
========================================= */

.contact-form-row {
    width: 100%;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 13px;
}


.contact-field {
    width: 100%;

    margin-bottom: 11px;
}


.contact-field label {
    display: block;

    margin-bottom: 5px;

    color: #111111;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    font-weight: 600;
}


.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    outline: none;

    border:
        1px solid
        #bfd1db;

    border-radius: 6px;

    background: #ffffff;

    color: #444444;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    transition:
        border-color
        0.2s ease;
}


.contact-field input,
.contact-field select {
    height: 37px;

    padding:
        0
        11px;
}


.contact-field textarea {
    min-height: 115px;

    padding: 11px;

    resize: vertical;
}


.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #00a900;
}


/* =========================================
   BUTTON
========================================= */

.contact-submit {
    min-width: 150px;

    height: 35px;

    padding:
        0
        21px;

    margin-top: 4px;

    border: 0;

    border-radius: 6px;

    background: #00a900;

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    font-weight: 700;

    text-decoration: underline;

    cursor: pointer;

    transition:
        background
        0.2s ease;
}


.contact-submit:hover {
    background: #078d16;
}



/* =========================================
   ALERTS
========================================= */

.contact-alert {
    margin-bottom: 17px;

    padding:
        10px
        12px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 12px;

    line-height: 1.45;

    border-radius: 4px;
}


.contact-success {
    background: #eafaea;

    color: #087313;

    border:
        1px solid
        #00a900;
}


.contact-error {
    background: #fff0f0;

    color: #b22828;

    border:
        1px solid
        #d54b4b;
}


.contact-hidden {
    position: absolute;

    left: -99999px;

    width: 1px;
    height: 1px;

    overflow: hidden;
}



/* =========================================
   MAP
========================================= */

.contact-map {
    width: 100%;

    height: 340px;

    background: #eeeeee;

    overflow: hidden;
}


.contact-map iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}



/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1100px) {

    .contact-main-container {
        max-width: 900px;

        gap: 45px;
    }

}



/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .contact-main-section {
        padding:
            50px
            30px;
    }


    .contact-main-container {
        grid-template-columns: 1fr;

        max-width: 680px;

        gap: 50px;
    }


    .contact-form-card {
        max-width: 540px;
    }


    .contact-map {
        height: 380px;
    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .contact-main-section {
        padding:
            40px
            18px;
    }


    .contact-info-area h1 {
        font-size: 28px;
    }


    .contact-info-grid {
        grid-template-columns: 1fr;

        row-gap: 25px;
    }


    .contact-social {
        margin-top: 35px;
    }


    .contact-form-card {
        padding:
            28px
            22px
            32px;
    }


    .contact-form-card h2 {
        font-size: 25px;
    }


    .contact-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-map {
        height: 320px;
    }

}