
    body {
      font-family: 'Poppins', sans-serif;
    }

    .outlined-icon {
      border: 2px solid currentColor;
      padding: 0.25em;
      border-radius: 0.25em;
      font-size: 27px;
    }

    .textbg {
      background-color: #22375D;
    }

    .whyus {
      margin: 6rem 5rem 0rem 6rem;
    }

    .phone-container {
      display: block;
    }

    @media (min-width: 768px) {
      .phone-container {
        display: inline;
      }
    }

    /* Large Quote Mark */
    .quote-mark {
      position: absolute;
      width: 37.92px;
      height: 141.92px;
      /* Adjust top/left for your design; these are placeholders */
      top: 20px;
      left: 20px;
      font-family: 'Poltawski Nowy', serif;
      font-style: normal;
      font-weight: 600;
      font-size: 92px;
      line-height: 120px;
      color: #49A535;
      pointer-events: none;
    }

    /* Hide scrollbar for testimonial scroll container */
    #testimonialScroll::-webkit-scrollbar {
      display: none;
    }

    #testimonialScroll {
      -ms-overflow-style: none;
      /* IE and Edge */
      scrollbar-width: none;
      /* Firefox */
    }

    .btn-custom {
      border: none;
      background-color: #189d56 !important;
      text-transform: uppercase;
      color: #fff !important;
      padding: 20px 65px !important;
      cursor: pointer;
    }

    .btn-custom2 {
      border: none;
      background-color: #162B51 !important;
      text-transform: uppercase;
      color: #fff !important;
      padding: 20px 65px !important;
      cursor: pointer;
    }

    /* Custom CSS */
    .hero-section {
      padding: 60px 0;
      /* You can add a background color or image if needed */
      /* background: #f9f9f9; */
    }

    .hero-section h1 {
      margin-bottom: 20px;
    }

    .hero-section p {
      font-size: 1rem;
      margin-bottom: 20px;
      max-width: 500px;
    }

    .hero-section .btn-primary {
      background-color: #2ecc71;
      border-color: #2ecc71;
      font-weight: 500;
    }

    .hero-section .btn-primary:hover {
      background-color: #27ae60;
      border-color: #27ae60;
    }

    .hero-image img {
      /* Make the image circular and responsive */
      border-radius: 50%;
      max-width: 100%;
      height: auto;
    }

    @media (min-width: 768px) {
      .hero-section h1 {
        font-size: 2.5rem;
      }
    }

    @media (min-width: 992px) {
      .hero-section h1 {
        font-size: 3rem;
      }
    }

    /* Scribble Effect for the header underline */
    .scribble-svg path {
      stroke-dasharray: 300;
      stroke-dashoffset: 300;
      animation: drawLine 2s ease forwards;
    }

    @keyframes drawLine {
      to {
        stroke-dashoffset: 0;
      }
    }

    /* Slider styles */
   /* Slider styles */
.slider {
  position: relative;
  width: 400px; /* Adjust size as needed */
  height: 400px; /* Adjust size as needed */
  overflow: hidden; /* Ensures slides stay within bounds */
}

.slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: scale(1.05); /* Adds slight zoom-out effect */
}

.slider .slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1); /* Zooms in slightly for emphasis */
}


    .custom-shadow {
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        }

        .accordion-content {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease-out;
        }
        .accordion-content.active {
          max-height: 1000px; /* Adjust height accordingly */
        }

        