/* Header Styling */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f4f4f4;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
  top: 0px;
  z-index: 19999;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo_img {
    height: 50px;
    margin-right: 10px;
  }
  
  .logo_contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .logo_contact-btn {
    background-color: #ff5a5f;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .logo_contact-no {
    font-size: 14px;
    color: #555;
  }
  
  .nav {
    display: flex;
    align-items: center;
  }
  
  .nav_items {
    list-style: none;
    display: flex;
    gap: 15px;
  }
  
  .nav_link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 5px 10px;
  }
  
  .nav_link:hover {
    background-color: #ff5a5f;
    color: white;
    border-radius: 5px;
  }
  
  /* Footer Styling */
  .footer {
    background-color: #333;
    color: white;
    padding: 20px 40px;
    text-align: center;
  }
  
  .footer_logos img {
    height: 50px;
    margin-bottom: 10px;
  }
  
  .footer_heading {
    font-size: 20px;
    margin-bottom: 5px;
  }
  
  .footer_heading3 {
    font-size: 16px;
    font-weight: 400;
    color: #ccc;
    margin-top: 0;
  }
  
  .footer_links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .footer_links a {
    color: #ff5a5f;
    text-decoration: none;
  }
  
  .footer_links a:hover {
    text-decoration: underline;
  }
  

/* Testimonials Section Styling */
.testimonials {
    margin: 8rem auto;
    overflow: hidden;
  }
  
  /* Testimonials Grid Styling */
  .testimonials_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    padding: 4rem 8rem;
    justify-content: center;
    align-items: center;
    justify-items: center;
    row-gap: 4rem;
  }
  
  /* Testimonial Content Styling */
  .testimonials_contants {
    width: 30rem;
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
  }
  
  /* Testimonial Image Styling */
  .testimonials_image {
    width: 100%;
  }
  
  /* Testimonial Display Section Styling */
  .testimonials_disp {
    text-align: center;
    position: absolute;
    bottom: 1px;
    color: #fff;
  }
  
  /* Testimonial Text Styling */
  .testimonials_disp-text {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
  }
  
  /* Testimonial Name Styling */
  .testimonials_disp-name {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 1rem 0;
  }
  
