@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.bg-color {
  background-color: #EFF2E6;
}

/* strip css */


 
        .dark-bg {
            background-color: #21352f;
            background: ;
            color: white;
        }

        .light-bg {
            background-color: #E6F3E3;
            height: 0px;
            /* Adjust height as needed for the light green strip */
        }

        .asterisk-icon {
            color: #C1E1C5;
            margin-right: 8px;
        }
   
        


.cl {
 background: #FCC811;
background: linear-gradient(90deg,rgba(252, 200, 17, 1) 0%, rgba(228, 61, 15, 1) 50%, rgba(185, 41, 89, 1) 100%);
  /* Blue gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.next-cta{
  background-color: #20514f;
  color: white;
}
.counter-box {
  background-color: #ffffff;
  border-radius: 14px;
}

.cta-cta {
  background-color: #173939;
  padding: 2px;
  border-radius: 28px;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  width: 50%;
}

body {

  background-color: #f8f9fa;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

.bg-blur {
  /* From https://css.glass */
  background: rgba(253, 252, 252, 0.44);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(139, 134, 134, 0.1);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(7.3px);
  border: 1px solid rgba(21, 19, 19, 0.3);
}


.hero {
  position: relative;
  /* background-image: url('../images/banner/banner.webp'); */
  background-image: url('../images/banner/hero-img.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  min-height: 90vh;
  z-index: 1;
  display: flex;
  align-items: center;
}


/* Mobile Styles (Applied at 768px and below) */
@media (max-width: 768px) {
  

    .hero{
        position: relative;
  /* background-image: url('../images/banner/banner.webp'); */
  background-image: url('../images/logo/mobile-view-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  min-height: 60vh;
  z-index: 1;
  display: flex;
  align-items: center;
    }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.30); */
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Typography */
.hero-h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.245rem;
  opacity: 0.9;
}

.highlight {
  color: #ffc107;
}

/* CTA Button */
.btn-primary {
  background: #d31a26;
  border: none;
  font-weight: 600;
  border-radius: 28px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #e64a19;
}

/* Box on Right */
.hero-box {
  border-radius: 20px;
}

/* Image */
.before-after-img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

/* Google Rating Card */
.google-rating {
  border: 2px solid #e3e3e3;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  background: #fff;
}

.star {
  color: #ffc107;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 991px) {
  .hero {
    padding: 70px 0;
    text-align: center;
  }

  .hero-h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .hero-box {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .hero-h1 {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}



/* services section */



.section-header {
  margin-bottom: 3rem;
}

.section-header h1 {
  font-weight: 700;
}

.underline {
  display: inline-block;
  height: 3px;
  width: 80px;
  background-color: #d31a26;
  /* A light blue/cyan color */
  margin: 0.5rem auto 1rem;
}

.card-service {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  /* Ensures cards have the same height */
}

.card-service:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.icon-container {
  margin-bottom: 1.5rem;
}

.icon {
  width: 80px;
  /* Adjust icon size */
  height: auto;
}

.card-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.card-text {
  color: #6c757d;
  font-size: 0.80rem;
  margin-bottom: 1.5rem;
}

.btn-learn-more {
  background-color: #173939;
  padding: 2px;
  border-radius: 28px;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  width: 50%;

  transition: background-color 0.3s ease;
}

.btn-learn-more:hover {
  background-color: #c23c45;
  color: #fff;
}

/* services section */


/* faq section */
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  /* background-color: var(--bs-accordion-active-bg); */
  background: none;
  border: none !important;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}


.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: rgb(14, 13, 13);
  text-align: left;
  background-color: white;
  /* border: none !important; */
  border: 2.6px solid #406666 ;
  border-radius: 24px;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: none;
  border-radius: 24px !important;
}


/* silder img section style */


.section-padding {
  padding: 5rem 0;
}

/* --- Common Card Styles --- */
.img-card {
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  height: 450px;
  /* Fixed height for visual consistency */
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  border: none;
  /* Remove default Bootstrap card border */
}

.img-card:hover {
  transform: translateY(-8px);
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Cover the card area */
  transition: transform 0.5s ease-in-out;
}

/* Overlay for hover effect */
.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Darker overlay on hover */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.img-card:hover .img-overlay {
  opacity: 1;
}

.img-card:hover img {
  transform: scale(1.05);
  /* Slight zoom on hover */
}

.img-overlay h5 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.img-overlay p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Title always visible on image cards */
.img-card .static-title {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  z-index: 10;
}


/* --- Special "Save More" Card --- */
.special-card {
  background-color: #920000;
  /* Dark red background */
  color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  height: 450px;
  /* Match height of image cards */
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Push image to bottom */
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.special-card:hover {
  transform: translateY(-8px);
}

.special-card h5 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.special-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #f0f0f0;
}

.special-card .btn-explore {
  background-color: #fff;
  color: #920000;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  display: inline-block;
  /* Ensure button adheres to text-align */
}

.special-card .btn-explore:hover {
  background-color: #eee;
  color: #7a0000;
}

.special-card .pointing-man {
  position: absolute;
  bottom: -5px;
  /* Adjust to place the man correctly */
  right: -20px;
  /* Adjust to place the man correctly */
  max-height: 80%;
  /* Ensure man image scales */
  width: auto;
  z-index: 5;
  /* Ensure man is above other content */
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .special-card {
    padding-bottom: 150px;
    /* Make space for the man image on smaller screens */
    align-items: center;
    /* Center content on smaller screens */
  }

  .special-card .pointing-man {
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    /* Center the man horizontally */
    max-height: 120px;
    /* Smaller man on tablet */
    width: auto;
  }

  .special-card h5,
  .special-card p,
  .special-card .btn-explore {
    text-align: center;
    /* Center align text in special card */
  }
}

@media (max-width: 767.98px) {
  .img-card {
    height: 450px;
    /* Adjust height for mobile */
  }

  .img-overlay h5 {
    font-size: 1.2rem;
  }

  .img-overlay p {
    font-size: 0.85rem;
  }

  .special-card {
    height: 300px;
    /* Adjust height for mobile */
  }

  .special-card .pointing-man {
    max-height: 100px;
    /* Smaller man on mobile */
  }
}


/* silder img section style */


/* 8 box section other services */


.section-padding {
  padding: 5rem 0;
}

/* Top Header Styling */
.top-tag {
  font-size: 0.85rem;
  font-weight: 500;
  color: #007bff;
  /* Blue for the text */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.top-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #d31a26;
  /* Blue line */
  margin-right: 8px;
}

/* Main Heading */
.main-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #343a40;
  /* Darker color for heading */
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* Gradient text for "Health Solutions" */
.gradient-text {
 background: #173939;
background: linear-gradient(90deg,rgba(252, 200, 17, 1) 0%, rgb(236, 203, 95) 50%, rgba(252, 200, 17, 1) 100%);
  /* Blue gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text-blue {
color: #173939;
}

/* Description Paragraph */
.description-paragraph {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Call to Action Button */
.btn-more-department {
  background-color: #173939;
  /* Blue button */
  color: #fff;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}
.btn-more-department-white {
  background-color: #f16b1c;
  /* Blue button */
  color: #fff;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

.btn-more-department:hover {
  background-color: #ffc107;
  /* Darker blue on hover */
  color: #fff;
}
.btn-more-department-white:hover {
  background-color: #f16b1c;
  /* Darker blue on hover */
  color: #fff;
}

/* Service Card Styling */
.service-card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
  /* Soft shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  /* Ensure cards have equal height */
  position: relative;
  overflow: hidden;
  /* For the numbered circle */
  border: none;
  /* Remove default bootstrap card border */
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.12);
}

/* Numbered circle on card */
.card-number-circle {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 35px;
  height: 35px;
  background-color: #d31a26;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
  /* Above other content */
}

.card-icon {
  font-size: 3.5rem;
  /* Adjust icon size */
  color: #007bff;
  /* Blue color for icons */
  margin-bottom: 1.5rem;
  height: 80px;
  /* fixed height for icons */
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.75rem;
}

.card-description {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}



/* Responsive adjustments */
@media (max-width: 991.98px) {
  .main-heading {
    font-size: 2.5rem;
  }

  .section-intro-text {
    text-align: center;
    /* Center align text on smaller screens */
  }

  .section-intro-paragraph-wrapper,
  .section-intro-button-wrapper {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .main-heading {
    font-size: 2rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .service-card {
    padding: 2rem;
  }

  .card-icon {
    font-size: 3rem;
  }

  .card-title {
    font-size: 1.2rem;
  }
}


/* 8 box section other services */



/* city location section */






.icon-box {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 27px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

.icon-box img {
  width: 80px;
  /* Adjust icon size */
  height: auto;
  margin-bottom: 0.75rem;
}

.icon-box span {
  font-size: 1rem;
  font-weight: 500;
  color: #495057;
}

/* city location section */


/* Calculate Your Business Setup  */

.stepper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  overflow-x: auto;
  /* Allow horizontal scrolling on small screens */
  white-space: nowrap;
  /* Prevent steps from wrapping */
}

.step {
  text-align: center;
  flex: 1 0 auto;
  /* Ensure steps don't shrink too much */
  position: relative;
  padding: 0 5px;
  /* Add padding to prevent crowding */
}

.step::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  height: 3px;
  width: 100%;
  background: #134464;
  z-index: 0;
}

.step:last-child::after {
  display: none;
}

.step .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0d1b3d;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: bold;
  z-index: 999;
  position: relative;
}

.step.active .circle,
.step.completed .circle {
  background: #20514f;
}

.step.active span,
.step.completed span {
  font-weight: bold;
  color: #070707;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* Mobile-specific styles for the stepper */
@media (max-width: 576px) {
  .stepper {
    justify-content: flex-start;
    /* Align steps to the start */
    overflow-x: scroll;
    /* Enable scrolling */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    padding-bottom: 15px;
    /* Add space for the scrollbar */
  }

  .step {
    padding: 0 10px;
  }

  .step span {
    font-size: 0.75rem;
    /* Smaller font for step labels */
  }

  .step .circle {
    min-width: 30px;
    min-height: 30px;
    font-size: 0.8rem;
  }
}

/* Calculate Your Business Setup  */


/* about section */

.section-padding {
  padding: 5rem 0;
}

/* --- Header & Title --- */
.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-header .subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #222222;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.about-header .subtitle::before,
.about-header .subtitle::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background-color: #5cb85c;
  /* Green accent from image */
}

.about-header h1 {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.2;
  color: #212529;
  max-width: 800px;
  margin: 0 auto;
}

/* --- Content Section --- */
.about-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}

.about-images {
  flex: 1;
  min-width: 300px;
  /* Ensure it doesn't get too small */
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-images img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Adjusting image sizes to match more closely */
.about-images .img-top {
  width: 90%;
  /* Smaller top image */
  align-self: flex-start;
}

.about-images .img-bottom {
  width: 95%;
  /* Larger bottom image */
  align-self: flex-end;
  margin-top: -50px;
  /* Overlap with the top image */
  z-index: 1;
  /* Bring forward */
}

.about-text-skills {
  flex: 1;
  min-width: 300px;
  /* Ensure it doesn't get too small */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-text-skills .description {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* --- Progress Bars --- */
.skill-item {
  margin-bottom: 1.5rem;
}

.skill-item p {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #212529;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skill-item .progress {
  height: 8px;
  /* Thinner progress bar */
  background-color: #e9ecef;
  border-radius: 5px;
  position: relative;
}

.skill-item .progress-bar {
  background-color: #5cb85c;
  /* Green accent */
  border-radius: 5px;
  position: relative;
}

/* Custom dot at the end of progress bar */
.progress-bar::after {
  content: '';
  position: absolute;
  right: -6px;
  /* Position the dot */
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #5cb85c;
  border-radius: 50%;
  border: 2px solid #fff;
  /* White border to make it pop */
  box-shadow: 0 0 0 2px #5cb85c;
  /* Outer glow */
}

/* --- About Us Button --- */
.btn-about-us {
  background-color: #5cb85c;
  /* Green accent */
  color: #fff;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
  /* Space below progress bars */
}

.btn-about-us:hover {
  background-color: #4cae4c;
  color: #fff;
}

.btn-about-us svg {
  fill: white;
  width: 15px;
  height: 15px;
}

/* --- Stats Section --- */
.stats-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 3rem;
  border-top: 1px solid #eee;
  padding-top: 3rem;
  gap: 2rem;
  /* Spacing between stat items */
}

.stat-item {
  display: flex;
  flex-direction: column; /* Stacks the h3 and span vertically */
  justify-content: center; /* Centers content vertically */
  align-items: center; /* Centers content horizontally */
  text-align: center;
  position: relative;
  padding: 0 1rem;
  height: 120px;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.stat-item span {
  font-size: 1rem;
  color: #6c757d;
  text-transform: capitalize;
}

.stat-separator {
  width: 2px;
  height: 60px;
  background-color: #e9ecef;
  margin: 0 2rem;
}

/* Custom green dot next to stats */
.stat-item h3::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #5cb85c;
  border-radius: 50%;
  margin-left: 5px;
}

@media (max-width: 991.98px) {
  .about-images .img-top {
    width: 100%;
    align-self: center;
  }

  .about-images .img-bottom {
    width: 100%;
    align-self: center;
    margin-top: 0;
  }

  .about-images {
    flex-direction: column;
    align-items: center;
  }

  .about-content-wrapper {
    flex-direction: column;
  }

  .stat-item {
    flex-basis: 45%;
    /* Two columns on smaller screens */
  }

  .stat-item h3::after {
    display: none;
    /* Hide dots on smaller screens if they clutter */
  }

  .stats-section {
    border-top: none;
    padding-top: 0;
    gap: 3rem;
  }
}

@media (max-width: 575.98px) {
  .about-header h1 {
    font-size: 2rem;
  }

  .stat-item {
    flex-basis: 100%;
    /* One column on extra small screens */
  }
}


/* about section */