/*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*/


     /* about section */

    .about-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 40px;
        padding: 60px 10%;
    }


    .about-image {
        position: relative;
        border-radius: 50% 0 50% 50%;
        overflow: hidden;
        border: 6px solid #f8f8f8;
            box-shadow: 0 4px 20px rgb(0 0 0 / 43%);
    }

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
    }


    .about-content h4 {
        font-size: 20px;
        color: black;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 10px;
        position: relative;
    }

    .about-content h4::after {
        content: "";
        width: 30px;
        height: 2px;
        background: #00bcd4;
        display: inline-block;
        margin-left: 8px;
        vertical-align: middle;
    }



    .about-content p {
        color: #666;
        margin-bottom: 20px;
        font-size: 15px;
    }


    @media (max-width: 992px) {
        .about-section {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .about-actions {
            flex-direction: column;
            justify-content: center;
        }


    }
       /* end about section */


         /*service page */
    .services-section {
        text-align: center;
        padding: 60px 8%;
    }

    .services-section h2 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .steps-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .step-box {
        background: #f9f5f6;
        position: relative;
        padding: 40px 20px 60px;
        text-align: center;
        border-radius: 8px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: hidden;
    }

    .step-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .step-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: #221b85;
        clip-path: polygon(100% 0, 0 100%, 0 0);
    }


    .step-box::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40px;
        background: #fff;
        clip-path: polygon(50% 0, 0 100%, 100% 100%);
    }



    .step-box h3 {
        margin-top: 30px;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .step-box p {
        font-size: 14px;
        color: #555;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .step-btn {
        background: #000;
        color: #fff;
        font-size: 13px;
        font-weight: bold;
        padding: 8px 18px;
        border-radius: 3px;
        display: inline-block;
        text-decoration: none;
        position: relative;
        z-index: 1;
    }


    @media (max-width: 992px) {
        .steps-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .steps-container {
            grid-template-columns: 1fr;
        }
    }
       /*service page */


       /* choose part */
          .service-sections {
      padding: 60px 0;
    }
    .service-box {
      margin-bottom: 60px;
    }
  
    .service-box img {
      margin-top: 45px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 220px;
    }
    
    .service-box p {
      color: #333;
      margin-top: 15px;
    }
       /* 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: 20px;
      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*/