/* =========================================================
   Living Connects Home Healthcare — Custom Stylesheet
   Bootstrap 5 is loaded via CDN in index.html; this file
   holds only the project-specific styling on top of it.
   ========================================================= */

:root {
  /* Brand palette sampled directly from the Living Connects logo. */
  --lc-navy: #0d2a54;
  --lc-navy-dark: #04142e;
  --lc-navy-mid: #1b4380;
  --lc-navy-pale: #e8edf7;
  --lc-gold: #c99333;
  --lc-gold-dark: #a97318;
  --lc-gold-deep: #8c5509;
  --lc-gold-light: #e6b653;
  --lc-gold-pale: #f6ead2;
  --lc-ink: #1f2d3a;
  --lc-muted: #5c6b78;
  --lc-cream: #f7f8f6;
  --lc-radius-lg: 1rem;
  --lc-radius-xl: 1.5rem;
}

body {
  color: var(--lc-ink);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

a {
  text-decoration: none;
}

/* Site-wide container width override (Bootstrap default is fixed
   per-breakpoint px widths; this keeps it at 90% of the viewport). */
.container {
  width: 90%;
  max-width: 90%;
}

.section-eyebrow {
  color: var(--lc-gold-dark);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section-subtitle {
  color: var(--lc-muted);
  max-width: 640px;
}

.btn-lc-teal {
  background-color: var(--lc-navy);
  border-color: var(--lc-navy);
  color: #fff;
}
.btn-lc-teal:hover,
.btn-lc-teal:focus {
  background-color: var(--lc-navy-dark);
  border-color: var(--lc-navy-dark);
  color: #fff;
}

.btn-lc-outline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}
.btn-lc-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-lc-navy {
  background-color: var(--lc-navy);
  border-color: var(--lc-navy);
  color: #fff;
}
.btn-lc-navy:hover {
  background-color: var(--lc-navy-dark);
  border-color: var(--lc-navy-dark);
  color: #fff;
}

/* =========================================================
   Top Utility Bar
   ========================================================= */
.top-bar {
  background-color: var(--lc-navy);
  color: #ffffff;
  font-size: 0.9rem;
}
.top-bar a {
  color: #ffffff;
}
.top-bar .social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.top-bar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
}
.top-bar .social-icons a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* =========================================================
   Navbar
   ========================================================= */
.lc-navbar {
  box-shadow: 0 2px 12px rgba(15, 37, 60, 0.06);
}
.lc-navbar .navbar-brand img {
  height: 60px;
  width: auto;
}
.lc-navbar .nav-link {
  color: var(--lc-ink);
  font-weight: 500;
  margin: 0 0.5rem;
}
.lc-navbar .nav-link.active,
.lc-navbar .nav-link:hover {
  color: var(--lc-navy);
}
.lc-navbar .nav-link.active {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--lc-gold);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}
.lc-navbar .container {
  min-height: 76px;
}
.navbar-brand-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 18px rgba(15, 37, 60, 0.1);
}
/* Beats the later .footer-logo-box img rule, which this element also matches. */
.lc-navbar .navbar-brand-center img {
  height: 62px;
}
.call-now-link {
  color: var(--lc-navy);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.call-now-link:hover {
  color: var(--lc-navy);
}

/* =========================================================
   Hero
   ========================================================= */
.hero-section {
  background-color: #ffffff;
}
.hero-card {
  background-image: url("../../images/hero-banner.jpg");
  background-size: cover;
  background-position: center;
  border-radius: var(--lc-radius-xl);
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: 3rem 2rem;



}
.hero-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(4, 20, 46, 0.95) 0%,
    rgba(13, 42, 84, 0.82) 28%,
    rgba(13, 42, 84, 0.4) 55%,
    rgba(4, 20, 46, 0.1) 100%
  );
}
.hero-card-content {
  z-index: 2;
  max-width: 640px;
}
.hero-card .hero-badge {
  background-color: #ffffff;
  color: var(--lc-navy);
}
.hero-badge {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50rem;
  padding: 0.5rem 1rem;
  display: inline-block;
}
.hero-heading-new {
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #ffffff;
  font-size: 2rem;
}
.hero-subtext {
  color: rgba(255, 255, 255, 0.92);
  max-width: 480px;
}
.btn-hero-gradient {
  background: linear-gradient(135deg, var(--lc-gold-light) 0%, var(--lc-gold) 55%, var(--lc-gold-dark) 100%);
  border: none;
  color: var(--lc-navy-dark);
  font-weight: 600;
}
.btn-hero-gradient:hover,
.btn-hero-gradient:focus {
  filter: brightness(1.06);
  color: var(--lc-navy-dark);
}
.btn-hero-outline {
  background-color: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: #fff;
}
.btn-hero-outline:hover,
.btn-hero-outline:focus {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
@media (min-width: 992px) {
  .hero-heading-new {
    font-size: 2.9rem;
  }
  .hero-card {
    padding: 4rem;
    min-height: 560px;
  }
}
.trust-pill {
  background-color: #fff;
  border: 1px solid #e7ecef;
  border-radius: 50rem;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lc-ink);
  box-shadow: 0 6px 16px rgba(15, 37, 60, 0.05);
}
.trust-pill i {
  color: var(--lc-gold-dark);
  margin-right: 0.4rem;
}

/* =========================================================
   Dedicated Support
   ========================================================= */
.support-panel {
  background: linear-gradient(120deg, var(--lc-navy-dark) 0%, var(--lc-navy-mid) 100%);
  border-radius: var(--lc-radius-xl);
}
.support-image-wrap img {
  border-radius: var(--lc-radius-lg);
  box-shadow: 0 20px 40px -15px rgba(10, 20, 40, 0.4);
}
.support-list li {
  display: flex;
  align-items: center;
  padding: 0.4rem 0;
  font-weight: 500;
  color: #fff;
}
.support-list li i {
  color: #fff;
  font-size: 1.1rem;
  margin-right: 0.6rem;
}

/* =========================================================
   Standard of Excellence
   ========================================================= */
.excellence-card {
  border-radius: var(--lc-radius-lg);
  padding: 2rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.excellence-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -18px rgba(15, 37, 60, 0.25);
}
.excellence-card--mint {
  background-color: var(--lc-gold-pale);
}
.excellence-card--blue {
  background-color: #d3dcee;
}
.excellence-card--mint .excellence-title {
  color: var(--lc-gold-deep);
}
.excellence-card--blue .excellence-title {
  color: var(--lc-navy);
}
.excellence-card--mint .excellence-icon {
  color: var(--lc-gold-deep);
}
.excellence-card--blue .excellence-icon {
  color: var(--lc-navy);
}
.excellence-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}

/* =========================================================
   Services
   ========================================================= */
.services-panel {
  background: linear-gradient(120deg, var(--lc-navy-dark) 0%, var(--lc-navy-mid) 100%);
  border-radius: var(--lc-radius-xl);
}
.service-card {
  background-color: #fff;
  border-radius: var(--lc-radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px -20px rgba(0, 0, 0, 0.5);
}
.service-card img {
  /*height: 200px;*/
  object-fit: cover;
  height: 253px;
  width: 100%;
}
.service-card .service-tag {
  color: var(--lc-gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-card .service-tag--wellness {
  display: inline-block;
  color: var(--lc-navy);
  background-color: rgba(13, 42, 84, 0.09);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
}
.service-card h5 {
  color: var(--lc-navy);
}

/* Licensing distinction note under the clinical wellness services. */
.services-licensing-note {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 1rem;
}
.services-licensing-note--light {
  color: var(--lc-muted);
  border-top-color: rgba(0, 0, 0, 0.1);
}
.service-card .service-link {
  color: var(--lc-gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
}
.service-card .service-link i {
  transition: transform 0.2s ease;
}
.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* =========================================================
   Journey / Process
   ========================================================= */
.journey-step {
  text-align: center;
  position: relative;
}
.journey-step .step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--lc-navy-mid) 0%, var(--lc-navy) 55%, var(--lc-navy-dark) 100%);
  border: 3px solid #fff;
  box-shadow: 0 8px 16px -4px rgba(13, 42, 84, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
}
.journey-step-title {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--lc-ink);
}
.journey-step-text {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--lc-muted);
}
.journey-steps-wrap {
  position: relative;
}
.journey-connector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1;
  pointer-events: none;
}

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials-section {
  background-color: var(--lc-cream);
}
.testimonial-masonry {
  display: flex;
  gap: 1.5rem;
  height: 640px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
}
.testimonial-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.testimonial-col--offset {
  margin-top: -140px;
}
.testimonial-card {
  background-color: #fff;
  border-radius: var(--lc-radius-lg);
  padding: 1.75rem;
  flex-shrink: 0;
  box-shadow: 0 10px 30px -18px rgba(15, 37, 60, 0.2);
}
.testimonial-card .stars {
  color: var(--lc-gold);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

/* =========================================================
   Stats band
   ========================================================= */
.stats-band {
  background-color: var(--lc-cream);
}
.stats-band .stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(180deg, var(--lc-navy-dark) 0%, var(--lc-gold-light) 48%, var(--lc-gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.2;
}
.stats-band .stat-label {
  color: var(--lc-navy);
  font-weight: 600;
  font-size: 0.95rem;
}

/* =========================================================
   Join Our Team CTA
   ========================================================= */
.join-team-panel {
  background: linear-gradient(120deg, var(--lc-navy-dark) 0%, var(--lc-navy-mid) 100%);
  border-radius: var(--lc-radius-xl);
  overflow: hidden;
  position: relative;
}
.join-team-panel .caregiver-img {
  max-height: 320px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.join-team-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  z-index: 0;
}

/* =========================================================
   Contact
   ========================================================= */
.contact-form .form-label {
  font-weight: 600;
  color: var(--lc-ink);
  margin-bottom: 0.5rem;
}
.contact-form .form-control,
.contact-form .form-select {
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  border: none;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(15, 37, 60, 0.06);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: transparent;
  box-shadow: 0 0 0 0.2rem rgba(201, 147, 51, 0.25);
}
.btn-contact-gradient {
  background: linear-gradient(90deg, var(--lc-gold) 0%, var(--lc-gold-dark) 100%);
  border: none;
  border-radius: 0.75rem;
  color: var(--lc-navy-dark);
  font-weight: 600;
}
.btn-contact-gradient:hover,
.btn-contact-gradient:focus {
  filter: brightness(1.06);
  color: var(--lc-navy-dark);
}
.contact-map-card {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--lc-radius-lg);
  background: #e8eef5;
  box-shadow: 0 2px 10px rgba(15, 37, 60, 0.06);
  position: relative;
  min-height: 480px;
  height: 480px;
}
.contact-map-card img,
.contact-map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: 0;
  display: block;
  border-radius: var(--lc-radius-lg);
}
@media (min-width: 992px) {
  .contact-map-card {
    min-height: 560px;
    height: 560px;
  }
}
.contact-info-card {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 2px 10px rgba(15, 37, 60, 0.06);
  height: 100%;
}
.contact-info-card i {
  color: var(--lc-gold-dark);
  font-size: 1.3rem;
}

/* =========================================================
   Donate CTA banner
   ========================================================= */
.donate-banner {
  background: linear-gradient(120deg, var(--lc-navy-dark) 0%, var(--lc-navy-mid) 100%);
  border-radius: var(--lc-radius-lg);
  color: #fff;
}
.donate-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--lc-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* =========================================================
   Footer
   ========================================================= */
.lc-footer {
  background-color: var(--lc-navy-dark);
  color: #c9d4e6;
}
.lc-footer h6 {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.lc-footer a {
  color: #c9d4e6;
}
.lc-footer a:hover {
  color: #fff;
}
.footer-logo-box {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 0.35rem 0.8rem;
}
/* The logo is a 3:2 lockup with built-in margin, so it needs more height
   than a square mark to read at the same optical size. */
.footer-logo-box img {
  height: 78px;
  width: auto;
  display: block;
}
.lc-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 1.15rem;
  margin-right: 0.9rem;
}
.lc-footer .footer-social a:hover {
  color: var(--lc-gold-light);
}
.footer-newsletter-input {
  background-color: #eef2f9;
  border: none;
  border-radius: 0.6rem;
  color: var(--lc-ink);
}
.footer-newsletter-input::placeholder {
  color: #7d8aa0;
}
.footer-newsletter-btn {
  background-color: #fff;
  color: var(--lc-navy);
  border-radius: 0.6rem;
  width: 46px;
  min-width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-newsletter-btn:hover {
  background-color: var(--lc-gold-light);
}
.lc-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
}

/* =========================================================
   Inner Page Hero (About / Services / How It Works / Careers / Contact)
   ========================================================= */
.page-hero {
  background: linear-gradient(120deg, var(--lc-navy-dark) 0%, var(--lc-navy-mid) 100%);
  color: #fff;
  padding: 3rem 0 3.5rem;
}
.page-hero .breadcrumb-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.page-hero .breadcrumb-link:hover {
  color: #fff;
}
.page-hero .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0.5rem;
}
.page-hero .breadcrumb-current {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
.page-hero h1 {
  font-weight: 700;
  margin-top: 0.75rem;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
}

/* =========================================================
   FAQ Accordion
   ========================================================= */
.faq-accordion .accordion-item {
  border: none;
  border-radius: var(--lc-radius-lg) !important;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(15, 37, 60, 0.06);
}
.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--lc-ink);
  padding: 1.1rem 1.5rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--lc-navy);
  background-color: var(--lc-navy-pale);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.faq-accordion .accordion-body {
  color: var(--lc-muted);
  padding: 0 1.5rem 1.25rem;
}

/* =========================================================
   Careers — Requirements
   ========================================================= */
.req-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(13, 42, 84, 0.08);
  color: var(--lc-ink);
}
.req-list li:last-child {
  border-bottom: 0;
}
.req-check {
  flex: 0 0 1.75rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: var(--lc-gold-pale);
  color: var(--lc-gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin-top: 0.1rem;
}
.skill-req-card {
  background-color: #fff;
  border-radius: var(--lc-radius-lg);
  padding: 1.4rem 1.5rem;
  height: 100%;
  box-shadow: 0 2px 10px rgba(15, 37, 60, 0.06);
  border: 1px solid rgba(13, 42, 84, 0.06);
}
.skill-req-card h4 {
  color: var(--lc-navy);
}
.skill-req-card--extra {
  background-color: var(--lc-gold-pale);
  border-color: var(--lc-gold);
  box-shadow: 0 8px 24px -16px rgba(201, 147, 51, 0.7);
}
.skill-req-note {
  color: var(--lc-muted);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}
.skill-req-items {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--lc-ink);
}
.skill-req-items li + li {
  margin-top: 0.35rem;
}
.req-closing {
  background: linear-gradient(120deg, var(--lc-navy-dark) 0%, var(--lc-navy-mid) 100%);
  color: #fff;
  border-radius: var(--lc-radius-lg);
  padding: 1.15rem 1.4rem;
  font-weight: 500;
  margin: 0;
}

/* =========================================================
   Careers — Open Positions
   ========================================================= */
.position-card {
  background-color: #fff;
  border-radius: var(--lc-radius-lg);
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(15, 37, 60, 0.06);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.position-card-body {
  flex: 1 1 18rem;
  min-width: 0;
}
.position-card .position-badge {
  background-color: var(--lc-navy-pale);
  color: var(--lc-navy);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 50rem;
  padding: 0.3rem 0.8rem;
  display: inline-block;
}
.position-badge--driving-yes {
  background-color: var(--lc-gold-pale);
  color: var(--lc-gold-deep);
}
.position-badge--driving-preferred {
  background-color: #fff;
  color: var(--lc-gold-deep);
  border: 1px solid var(--lc-gold);
}
.position-card .position-meta {
  color: var(--lc-muted);
  font-size: 0.9rem;
}
.position-description {
  color: var(--lc-ink);
  font-size: 0.95rem;
}
.position-description p {
  margin-bottom: 0.5rem;
}
.position-description p:last-child {
  margin-bottom: 0.75rem;
}
.position-requirements {
  color: var(--lc-muted);
  font-size: 0.92rem;
}

/* =========================================================
   Simple content sections (About story, etc.)
   ========================================================= */
.content-image-wrap img {
  border-radius: var(--lc-radius-xl);
  box-shadow: 0 20px 40px -18px rgba(15, 37, 60, 0.25);
}

/* =========================================================
   Utility
   ========================================================= */
.rounded-xl {
  border-radius: var(--lc-radius-xl);
}



/* Mobile */
@media (max-width: 768px) {
    .lc-navbar .container {
        min-height: 0;
    }

    .navbar-brand-center {
        position: fixed;
        top: 10px;
        right: 15px;
        left: auto;
        transform: none;
        z-index: 9999;
    }

    .navbar-brand-center img {
        height: 56px; /* প্রয়োজন অনুযায়ী পরিবর্তন করুন */
        width: auto;
    }
}
