body {
  font-family: Poppins, sans-serif;
}
/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #00301F;
  border-radius: 3px;
}


/* ================= HEADER ================= */
.hero-bg-wrapper {
  background: linear-gradient(
    180deg,
    #fff 15%,
    #FFFCF5 35%,
    #FEF7E2 50%
  );
}
.main-header {
  padding: 26px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 70px;
}

/* NAV */
.main-nav {
  display: flex;
  gap: 14px;
}

.nav-item {
  padding: 4px 14px;
  border-radius: 30px;
  border: 2px solid #cfd8d3;
  font-size: 14px;
  font-weight: 500;
  color: #00301F;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-item:hover {
  background: #004A4D;
  color: #ffffff;
  border-color:#004A4D;
}

.nav-item.active {
  background: #004A4D;
  color: #ffffff;
  border-color: #004A4D;
}

/* ================= HERO ================= */
.hero-section {
  padding: 20px 0 0px;
}

.hero-top-text {
  font-size: 25px;
  font-weight: 300;
  color: #005336;
  text-align: left;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 40px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
  color: #E16700; /* Default orange color for most text */
}

/* Special styling for "protect your loved ones- not put" */
.hero-title .protect-text {
  color: #00301F;
  font-weight: 700;
}

/* Line-specific styling if needed */
.hero-title .line1,
.hero-title .line2,
.hero-title .line3 {
  display: inline;
}

.hero-desc {
  font-size: 18px;
  color: #00301F;
  text-align: left;
  max-width: 520px;
}

.hero-desc.small {
  margin-top: 14px;
}

.cta-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 32px;
  background: #E16700;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* ================= IMAGE ================= */
.hero-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  margin-top: 5%;
}

.image-circle img {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 920px;
  bottom: 0;
  margin-right: 20px;
}

/* SAFETY SECTION */
.safety-section {
  position: relative;
  background: #004A4D;
  padding: 90px 0 110px;
  overflow: hidden;
  color: #fff;
}

/* RIGHT SIDE GREEN PATTERN IMAGE */
.bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 100%;
  background: url("../images/shape/pattern-1.png") no-repeat center;
  background-size: cover;
  opacity: 0.75;
}

/* TITLE */
.safety-title {
  color: #fff;
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 25px;
}

.safety-title span {
  color: #E16700;
}

/* DESCRIPTION */
.safety-desc {
  max-width: 1000px;
  font-size: 22px;
  line-height: 1.75;
  font-weight: 300;
  color:#FFFFFF;
  margin-bottom: 45px;
}

/* CARD ROW */
.safety-cards {
  margin-top: 30px;
}

/* CARD */
.safety-card {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  height: 260px;
}

/* CARD IMAGE */
.safety-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CARD TEXT */
.card-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  padding: 8px 12px;
}
/* STAGGER EFFECT */
.stagger-up {
  margin-top: -20px;
}

.stagger-down {
  margin-top: 25px;
}

/* SECTION */
.audit-section {
  background: #fffaf1;
  padding: 90px 0;
}

/* IMAGE */
.audit-image {
  border-radius: 18px;
  overflow: hidden;
}

.audit-image img {
  width: 100%;
  display: block;
}

/* TITLES */
.audit-title {
  font-size: 37px;
  font-weight: 600;
  color: #00301F;
  margin-bottom: 25px;
}

.audit-title span {
  font-weight: 300;
  margin-bottom: 10px;
}

.audit-highlight {
  font-size: 20px;
  color: #E16700;
  font-weight: 600;
  margin-bottom: 25px;
}

.audit-desc {
  font-weight: 600;
  font-size: 20px;
  color: #00301F;
}

/* ACCORDION */
.audit-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 50px;
}

.accordion-item {
  border-radius: 14px;
  overflow: hidden;
}

.accordion-header {
  background: #fff;
  border-radius: 14px;
  width: 100%;
  padding: 22px 26px;
  font-size: 20px;
  font-weight: 600;
  color: #00301F;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header .icon {
  font-size: 22px;
  color: #E16700;
}

/* BODY */
.accordion-body {
  background: transparent;
  display: none;
  padding: 30px 26px 26px;
}

.accordion-item.active .accordion-body {
  display: block;
}

/* TICK LIST */
.tick-list {
  list-style: none;
  padding: 0;
}
.accordion-body p {
  position: relative;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 25px;
  color: #00301F;
}

.tick-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-weight: 400;
  font-size: 20px;
  color: #00301F;
}

/* TICK IMAGE */
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  background: url("../images/home-audit-images/Icon_checkmark-circle.svg") no-repeat center;
  background-size: contain;
}

/* FOOTER */
.audit-footer {
  text-align: left;
  margin-top: 35px;
  font-size: 29px;
  color: #005336;
}

.audit-footer span {
  color: #005336;
  font-weight: 700;
}


/* SECTION BASE */
.install-section {
  background: #064e4b;
  padding: 90px 0 110px;
  color: #fff;
}

/* HEADER */
.install-header {
  max-width: 950px;
  margin-bottom: 40px;
}

.install-header h2 {
  color: #ffffff;
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.install-header h2 span {
  color: #E16700;
  font-weight: 500;
}

.install-header p {
  font-weight: 300;
  font-size: 28px;
  color: #FFDC78;
  line-height: 1.6;
}

/* SLIDER WRAPPER */
.install-slider {
  position: relative;
  background: none;
  border-radius: 18px;
  padding: 14px;
  overflow: visible;
}

/* IMAGE */
.slider-image {
  position: relative;
  border-radius: 14px;
  overflow: visible;
  margin-left: -20px;
  margin-right: -20px;
}


.slider-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
  border-radius: 30px;
}

/* IMAGE TEXT */
.slider-text {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35px;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
  text-align: center;
}


/* NAV BUTTONS */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.nav-btn img {
  width: 60px;
  height: 60px;
}

.nav-btn.left {
  left: -22px;
}

.nav-btn.right {
  right: -22px;
}
/* SECTION */
.caregiver-training {
  background: #fffaf1;
  padding: 90px 0;
}

/* HEADER */
.training-header {
  max-width: 900px;
  margin-bottom: 40px;
}

.training-header h2 {
  font-size: 36px;
  font-weight: 300;
  color: #004A4D;
  margin-bottom: 25px;
}

.training-header h2 span {
  color: #E16700;
}

.training-header h2 small {
  font-weight: 300;
  font-size: 36px;
  color: #004A4D;
}

.training-header p {
  font-size: 24px;
  color: #00301F;
  font-weight: 400;
}

.training-header p strong {
  font-weight: 400;
}

.training-grid {
  row-gap: 28px; 
}


/* CARD */
.training-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 260px;
}

.training-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERLAY */
.training-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.training-card .overlay {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 2;
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
}

/* WHY AUDIT SECTION */
.why-audit-section {
  background: #064e4b;
  padding: 40px 0;
  color: #fff;
}

.why-title {
  color: #fff;
  font-size: 37px;
  font-weight: 500;
  margin-bottom: 25px;
}

.why-title span {
  color: #E16700;
  font-weight: 600;
}

/* LIST */
.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  position: relative;
  font-weight: 400;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 22px;
  color: #ffffff;
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: url("../images/home-audit-images/Icon_checkmark-circle.svg") no-repeat center;
  background-size: contain;
}

/* IMAGE */
.why-image {
  max-width: 380px;
  margin-left: auto;
  margin-right: 30px;
  margin-bottom: -130px;
}

.why-image img {
  width: 100%;
  border-radius: 18px;
}
/* CTA SECTION */
.cta-section {
  background: #fffaf1;
  padding: 90px 0;
}

.cta-title {
  font-size: 36px;
  font-weight: 500;
  color: #00301F;
  margin-bottom: 30px;
}

.cta-title span {
  font-weight: 700;
}

.cta-desc {
  font-weight: 400;
  font-size: 22px;
  color: #22272B;
  max-width: 520px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  background: #E16700;
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #e66f00;
  color: #fff;
}

/* ===== FOOTER BASE ===== */
.main-footer {
  background: #001B1C;
  color: #ffffff;
}

/* TOP FOOTER */
.footer-top {
  padding: 70px 0 60px;
}

.footer-widget {
  margin-bottom: 30px;
}

/* LOGO */
.logo-widget .logo-box img {
  max-width: 160px;
  margin-bottom: 18px;
}

/* LOCATION & EMAIL */
.footer-widget .info li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #FEF7E2 !important;
  margin-bottom: 10px;
  text-decoration: none;
}
.footer-widget .info li a {
  color: #FEF7E2 !important;
  text-decoration: none;
}

.footer-widget .info img {
  width: 30px;
  margin-top: 3px;
}

 .footer-top .logo-widget .support-box {
   position: relative;
   display: block;
   background:#fff7e6;
   padding: 22px 30px 19px 90px;
   border-radius: 20px;
 }

 .footer-top .logo-widget .support-box i {
   position: absolute;
   left: 20px;
   top: 20px;
   width: 50px;
   height: 50px;
   font-size: 20px;
   color: #063f3d;
   line-height: 50px;
   text-align: center;
   border-radius: 50%;
 }

 .footer-top .logo-widget .support-box p {
   font-size: 15px;
   line-height: 22px;
   color: #063f3d;
 }

 .footer-top .logo-widget .support-box h5 {
   display: block;
   font-size: 16px;
   line-height: 28px;
   color: #063f3d;
   font-weight: 700;
 }

 .footer-top .logo-widget .support-box h5 a {
   display: inline-block;
   color: #063f3d;
 }
/* TITLES */
.footer-widget h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #e66f00;
}

/* LINKS */
.links-list li {
  margin-bottom: 5px;
}

.links-list li a {
  font-size: 14px;
  color: #FEF7E2;
  transition: 0.3s;
}

.links-list li a:hover {
  color: #ffffff;
}

/* ===== TIMINGS CARD ===== */
.appointment-widget {
  background: #fff7e6;
  border-radius: 18px;
  padding: 26px;
  text-align: center;
  color: #00301F;
}

.appointment-widget h4 {
  color: #00301F;
  font-size: 20px;
}

.shediul-list li {
  margin-bottom: 16px;
}

.shediul-list span {
  font-size: 17px;
  color: #00301F;
}

.shediul-list h6 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
}

/* CTA BUTTON */
.theme-btn-one {
  display: inline-block;
  background: #E16700;
  color: #fff;
  padding: 10px 18px;
  border-radius: 22px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  transition: 0.3s;
}

.theme-btn-one:hover {
  background: #E16700;
}

/* ===== FOOTER BOTTOM ===== */
.footer-botton {
  background: #000000;
  padding: 18px 0;
}

.footer-botton p,
.footer-copyright-links li a {
  font-size: 13px;
  color: #FEF7E2 !important;
}
.footer-botton p a {
  color: #FEF7E2 !important;
  text-decoration: none;
}

.footer-copyright-links li {
  display: inline-block;
  margin-left: 18px;
  text-decoration: none !important;
}

.footer-copyright-links li a:hover {
  color: #E16700;
}


