/*start banner part*/
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .text {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
        width: 100%;
        overflow-x: hidden;
    }

    .type {
        color: black;
        font-size: 3rem;
        font-weight: 500;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
    }

    @media (max-width: 767px) {
        .type {
            font-size: 15px !important;
        }

        .text {
            height: 100px;
            width: 100%;
        }
    }

    @media (max-width: 1024px) {
        .type {
              font-size: 18px !important;
            text-align: center;
            overflow-x: hidden;
        }

        .text {
            height: 100px;
            width: 100%;
        }
    }

    .our-promise {
        font-size: 20px;
        margin-left: 5px;
    }

    .fa-solid {
        color: green;
        margin-right: 5px;
    }

    /*end banner part*/



     /* about part */
    .benefits-section {
        max-width: 1200px;
        margin: auto;
        padding: 60px 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 40px;
    }

    .benefits-content h5 {
        color: #e30613;
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 10px;
    }



    .benefits-image {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .benefits-image img.main {
        width: 100%;
        max-width: 420px;
        border-radius: 50%;
        border: 8px solid #fff;
        box-shadow: 0 0 0 6px #d32f45;
    }

    .benefits-image img.small {
        position: absolute;
        top: 10%;
        left: -5%;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 6px solid #fff;
        box-shadow: 0 0 0 6px #d32f45;
    }


    @media (max-width: 992px) {
        .benefits-section {
            grid-template-columns: 1fr;
            text-align: center;
        }


        .benefits-image {
            margin-top: 40px;
        }

        .benefits-image img.small {
            position: absolute;
            top: -5%;
            left: 70%;
        }
    }

    @media (max-width: 576px) {
        .benefits-content h2 {
            font-size: 26px;
        }

        .benefits-image img.small {
            width: 80px;
            height: 80px;
            top: -8%;
            left: 65%;
        }
    }

     @media (max-width: 767px) {
       .benefits-section{
            margin-top: -50px;
       }
    }
   

    /* service page */
    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .card {
        background: #fff;
        padding: 2rem 1.5rem;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        text-align: center;
        position: relative;
    }

    .number {
        width: 40px;
        height: 40px;
        background: #f7931e;
        color: #fff;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.9rem;
    }

    .card h3 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.8rem;
        color: #222;
    }

    .card p {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.4;
    }

 /*  service part */
    .services-section {
        text-align: center;
        padding: 60px 8%;
    }

    .services-section h2 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .services {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-box {
        display: flex;
        align-items: center;
         box-shadow: 0 4px 20px rgb(0 0 0 / 43%);   
        border: 1px solid #eee;
        border-radius: 6px;
        padding: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .icon {
        background: #d32f45;
        color: #fff;
        font-size: 22px;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        flex-shrink: 0;
    }

    .service-content {
        flex: 1;
        padding: 0 15px;
    }

    .service-content h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .service-content p {
        font-size: 14px;
        color: #555;
    }



    @media (max-width: 992px) {
        .services {
            grid-template-columns: 1fr;
        }
    }



      /* testimonials */
     .testimonial {
      text-align: center;
      padding: 50px 20px;
    }
    .testimonial img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
    }
    .testimonial h5 {
      font-weight: bold;
      color: #e67e22;
      margin-bottom: 15px;
    }
    .testimonial p {
         font-size: 25px;
      color: #333;
      max-width: 800px;
      margin: auto;
    }
    .carousel-indicators [data-bs-target] {
      background-color: #ccc;
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }
    .carousel-indicators .active {
      background-color: #e67e22;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(70%);
    }


.contact-section {
      padding: 50px 20px;
      background: #fff;
    }
    .contact-section h2 {
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
         color: black;
    }
    .contact-info {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
    }
    .contact-icon {
      font-size: 22px;
      color: #0d6efd;
      border: 1px solid #d0e3ff;
      border-radius: 8px;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      background: #f8fbff;
    }
    .contact-info h5 {
      margin: 0;
      font-weight: bold;
      font-size: 16px;
    }
    .contact-info p {
      margin: 0;
      color: #333;
      font-size: 15px;
    }
    .contact-info a {
      color: #0d6efd;
      text-decoration: none;
    }
    iframe {
      border: 0;
      width: 100%;
      min-height: 300px;
      border-radius: 8px;
    }
/* testimonials */




    /*Start FAQ part*/
    :root {
        --primary-text: #4f8f70;
        --secondary-text: #e9fff3;
        --white-text-white: #ffffff;
        --black-text-black: #000000;
    }

    .accordion-body ul li a {
        color: black;
        font-weight: 700;
    }

    .faq-section .accordion {
        width: 100%;
    }

    .accordion-button:not(.collapsed) {

        background-color: var(--secondary-text);
    }

    .accordion-button:not(.collapsed)::after {
        background-image: none;
        transform: none;
        display: none;
    }

    .accordion-button:focus {
        box-shadow: none;
    }

    .accordion-button:before {
        content: "";
        position: absolute;
        right: 0.75rem;
        top: 1.25rem;
        height: 2px;
        width: 1rem;
        background-color: var(--primary-text);
    }

    .accordion-button.collapsed:after {
        content: "";
        position: absolute;
        right: 1.1875rem;
        top: 0.8125rem;
        height: 1.0625rem;
        width: 0.125rem;
        border-style: none;
        background-color: var(--primary-text);
    }

    .faq-section .accordion-button h5 {

        color: black;
        margin-right: 13px;
    }

    .accordion-body {
        background-color: var(--secondary-text);
    }

    ul {
        list-style-type: none;
        list-style-type: disc;
        margin-left: 20px;
    }

    ul li {
        margin-bottom: 5px;
    }

    .accordion-body ol {
        counter-reset: step-counter;
        list-style-type: none;
        padding-left: 0;
    }

    .accordion-body ol>li {
        counter-increment: step-counter;
        margin-bottom: 10px;
    }

    .accordion-body ol>li::before {
        content: "Steps "counter(step-counter) ": ";
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .accordion-button:before {
            right: 0.75rem;
        }

        .accordion-button.collapsed:after {
            right: 1.1875rem;
        }

        .faq-section .accordion-button h5 {
            margin-right: 0px;
        }
    }

    /*end  FAQ part*/