/*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: 19px !important;
        }

        .text {
            height: 100px;
            width: 100%;
        }
    }

    @media (max-width: 1024px) {
        .type {
             font-size: 34px;
            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*/

     /*start about section*/
    .about-images {
          width: 458px;
        height: 400px;
        margin-top: 20px;
    }

    @media (max-width: 768px) {
        .about-images {
            width: 100%;
                    margin-top: -90px;
        }
    }

    /*end about section*/

    /* service section */
    .bst-srvc {
        padding: 60px 10%;
        text-align: center;
    }

    .bst-srvc h4 {
        font-size: 24px;
        font-weight: 600;
           color: black;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bst-srvc h4::before {
        content: "";
        width: 20px;
        height: 2px;
        background: #f44336;
        margin-right: 10px;
    }

    .bst-srvc h2 {
        font-size: 32px;
        margin-bottom: 40px;
        font-weight: bold;
    }

    .bst-srvc h2 span {
        color: #f44336;
    }

    .services {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .service-card {
        border-left: 4px solid black;
        padding: 30px;
        border-radius: 12px;
        text-align: left;
        position: relative;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }


    .service-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

     .service-card h3 a{
        text-decoration: none;
        color: black;
    }

    .service-card p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }


    .service-card .number {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 28px;
        font-weight: bold;
        color: red;
    }

    @media (max-width: 768px) {


        .service-card {
            padding: 20px;
        }

        .service-card .number {
            font-size: 22px;
        }
    }
    /* end service section */



     /*why choose  */

    .why-choose {
        padding: 60px 10%;
    }

    .testimonials {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .card {
        border-bottom: 5px solid red !important;
        border-radius: 10px;
        padding: 0px 20px 30px;
        text-align: center;
        position: relative;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }

    .card:hover {
        transform: translateY(-6px);
    }

    .card h3 {
        margin-top: 50px;
        font-size: 18px;
        font-weight: bold;
    }

    .card p {
           font-size: 18px;
        color: #555;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .card .quote {
        font-size: 28px;
        color: #444;
    }

    @media (max-width: 768px) {
        section {
            padding: 40px 5%;
        }

        .card {
            padding: 50px 20px 25px;
        }
    }
     /*end choose  part*/



    /* 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: 24px;
      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*/