/*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: 18px !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: 550px;
        height: 450px;
        
    }

    @media (max-width: 768px) {
        .about-images {
            width: 100%;
        }
        .about-response{
                margin-top: -90px;
        }
    }

    /*end about section*/


    /* service page */
    .service-content a{
        text-decoration: none;
        color: black;
    }
    .services {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .service-box {
        border-top: 4px solid #ff2d55 !important;
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }


    .service-content {
        padding: 20px;
    }

    .service-content h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        text-transform: uppercase;
        position: relative;
    }

    .service-content h3::after {
        content: "";
        display: block;
        width: 40px;
        height: 2px;
        background: black;
        margin: 8px auto;
    }

    .service-content p {
           font-size: 17px;
        color: #666;
    }


    @media (max-width: 992px) {
        .services {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .services {
            grid-template-columns: 1fr;
        }
    }
    /* service page */


    /*choose part  */

    .why-choose {
        text-align: center;
        padding: 50px 20px;
    }

    .why-choose h2 {
        font-size: 2rem;
        font-weight: bold;
    }

    .why-choose h2 span {
        color: #ff2d55;
    }

    .why-choose p {
        max-width: 800px;
        margin: 10px auto 40px;
        color: #666;
        font-size: 15px;
        line-height: 1.6;
    }

    .choose-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: auto;
    }

    .choose-box {
        background: #fff;
        padding: 30px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .choose-box:hover {
        transform: translateY(-8px);
    }

    .icon {
        font-size: 40px;
        margin-bottom: 15px;
        display: inline-block;
        color: #ff2d55;
    }

    .choose-box h3 {
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .choose-box p {
          font-size: 18px;
        color: #555;
        line-height: 1.5;
    }

    @media (max-width: 768px) {
        .why-choose h2 {
            font-size: 1.6rem;
        }

        .choose-box {
            padding: 20px 15px;
        }
    }
       
    /*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: 22px;
      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*/