
 /* Reset and base styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Unique class names for the header */
.complex_header_container_x7y {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.complex_logo_wrapper_x7y {
    display: flex;
    align-items: center;
    gap: 10px;
}

.complex_logo_image_x7y {
    height: 50px;
}

.complex_logo_text_x7y {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.complex_nav_container_x7y {
    display: flex;
    align-items: center;
    gap: 30px;
}

.complex_nav_link_x7y {
    text-decoration: none;
    color: #333;
}

.complex_cta_button_x7y {
    background-color: #00a7d4;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Main content styles */
.complex_main_section_x7y {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 5%;
    background: linear-gradient(135deg, #f0f4f0 0%, #e8f5e9 100%);
    min-height: calc(100vh - 80px);
}

.complex_content_left_x7y {
    max-width: 500px;
}

.complex_main_heading_x7y {
    font-size: 48px;
    margin-bottom: 24px;
    color: #222;
    line-height: 1.2;
}

.complex_main_text_x7y {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
}

.complex_search_button_x7y {
    background-color: #00a7d4;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.complex_illustration_x7y {
    max-width: 600px;
    width: 100%;
    height: auto;
}

/* Hover effects */
.complex_cta_button_x7y:hover,
.complex_search_button_x7y:hover {
    background-color: #006885;
}

/* Responsive design */
@media (max-width: 1024px) {
    .complex_main_heading_x7y {
        font-size: 40px;
    }

    .complex_illustration_x7y {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .complex_main_section_x7y {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .complex_content_left_x7y {
        margin-bottom: 40px;
    }

    .complex_main_heading_x7y {
        font-size: 32px;
    }
    .complex_logo_image_x7y {
        height: 30px;
    }

    .complex_illustration_x7y {
        max-width: 400px;
    }
    .contact-grid {
        
        padding: 0px 30px !important;
    }
    .support-section {
        padding: 0px 30px !important;
    }
    
    
   
}

@media (max-width: 480px) {
    .complex_header_container_x7y {
        padding: 15px;
    }
    .complex_logo_image_x7y {
        height: 20px;
    }

    .complex_logo_text_x7y {
        font-size: 20px;
    }

    .complex_nav_container_x7y {
        gap: 15px;
    }

    .complex_cta_button_x7y {
        padding: 8px 16px;
        font-size: 14px;
    }

    .complex_main_heading_x7y {
        font-size: 28px;
    }

    .complex_main_text_x7y {
        font-size: 16px;
    }

    .complex_illustration_x7y {
        max-width: 300px;
    }
}
/* ====================
cards
=================== */


  /* Reset and base styles */
  .unique_container_zx9k8v * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }

  /* Container styles */
  .unique_container_zx9k8v {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  /* Card styles */
  .unique_card_wrapper_qw3p5m {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* Image container */
  .unique_image_container_yt7h2n {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f5f5f5;
  }

  .unique_service_image_lk4j9d {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Hours text */
  .unique_hours_text_mn6b1x {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
  }

  /* Company name */
  .unique_company_name_rs5t7w {
    font-size: 24px;
    font-weight: bold;
    color: #000;
  }

  /* Description container */
  .unique_description_container_kj8h9 {
    position: relative;
  }

  /* Description */
  .unique_description_vb4n8m {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    flex-grow: 1;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  /* Tooltip */
  .unique_tooltip_mn7u6 {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .unique_tooltip_mn7u6::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
  }

  .unique_description_container_kj8h9:hover .unique_tooltip_mn7u6 {
    visibility: visible;
    opacity: 1;
  }

  /* Rating section */
  .unique_rating_section_hj2k9p {
    margin: 15px 0;
  }

  .unique_rating_text_dc7l3f {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
  }

  .unique_stars_container_xw1m4s {
    color: #ff4e8c;
    font-size: 20px;
  }

  /* Contact button */
  .unique_contact_button_pg6t9y {
    background-color: #009eca;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
  }

  .unique_contact_button_pg6t9y:hover {
    background-color: #006885;
  }

  /* New styles for the load more button */
  .unique_load_more_button_hy2k9l {
    background-color: #00a7d4;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 30px auto;
    display: block;
  }

  .unique_load_more_button_hy2k9l:hover {
    background-color: #006885;
  }

  .unique_card_wrapper_qw3p5m.hidden {
    display: none;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .unique_container_zx9k8v {
      grid-template-columns: 1fr;
      padding: 15px;
    }

    .unique_card_wrapper_qw3p5m {
      padding: 15px;
    }

    .unique_tooltip_mn7u6 {
      width: 250px;
      font-size: 13px;
    }
}


/* ======================
clint 
==================== */


.testimonials_xk92__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.testimonials_xk92__heading {
    text-align: center;
    color: #333;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.4;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials_xk92__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonials_xk92__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.testimonials_xk92__image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonials_xk92__text {
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.testimonials_xk92__name {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.testimonials_xk92__location {
    color: #666;
    font-size: 0.9rem;
}

.testimonials_xk92__footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.testimonials_xk92__footer-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.testimonials_xk92__footer-link:hover {
    color: #333;
}

.testimonials_xk92__disclaimer {
    text-align: center;
    color: #777;
    font-size: 0.8rem;
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9f8;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .testimonials_xk92__container {
        grid-template-columns: 1fr;
    }

    .testimonials_xk92__card {
        padding: 15px;
    }

    .testimonials_xk92__image {
        width: 100px;
        height: 100px;
    }
}