



.sticky-header {
  position: fixed;
  top: 10px; /* Keeps the header 10px below the top */
  left: 50%; /* Centers the header horizontally */
  transform: translateX(-50%); /* Adjusts the position to truly center the header */
  width: 80%; /* Makes the header 80% of the width of the viewport */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.8); /* Slightly transparent for visibility */
  border-radius: 12px; /* Adds rounded corners */
  border-bottom: 2px solid #ddd; /* Optional: Adds a subtle border under the header */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000; /* Ensure it stays on top of other content */
  height: 62px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3a3a3a;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #3a3a3a;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta {
  background-color: #d4f50b;
  color: #3a3a3a;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-weight: bold;
}

.cart-icon {
  font-size: 1.5rem;
  color: #3a3a3a;
}



      /* Hamburger menu button */
      .hamburger-menu {
        display: none;
        font-size: 2rem;
        color: #3a3a3a;
        cursor: pointer;
      }
      
      /* Overlay menu */
      .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.8);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        z-index: 1000;
      }
      
      .menu-overlay ul {
        list-style: none;
        text-align: center;
      }
      
      .menu-overlay ul li {
        margin: 1rem 0;
      }
      
      .menu-overlay ul li a {
        text-decoration: none;
        font-size: 1.5rem;
        color: #3a3a3a;
      }
      
      /* Close button inside the overlay */
      .close-btn {
        position: absolute;
        top: 1.5rem;
        right: 2rem;
        font-size: 2rem;
        background: none;
        border: none;
        cursor: pointer;
        color: #3a3a3a;
      }
      
      /* Show hamburger menu on smaller screens */
      @media (max-width: 768px) {

        .sticky-header{width: 90%;
        height: auto;}

        nav ul {
          display: none;
        }
        .cta-buttons {
          display: none;
        }
        .hamburger-menu {
          display: block;
          margin: auto 0;
        }
      }
      
      /* Active class to open the overlay */
      .menu-overlay.open {
        transform: translateX(0);
      }
      

      /* Container for banners */
      .bannerContainer_vfhj {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 30vh;
        background-color: #fff;
      }
  
      /* Banner styling */
      .bannerSection_tgrd {
        width: 100vw;
        padding: 20px;
        font-size: 3em;
        font-weight: bold;
        display: flex;
        justify-content: center;
        overflow: hidden;
      }
  
      /* Specific banner colors */
      .bannerGreen_fjkd {
        background-color: #ccff33;
      }
      .bannerWhite_lkjr {
        background-color: #000;
        color: #fff;
      }
  
      /* Inner text styling */
      .bannerText_qzmd {
        white-space: nowrap;
        display: inline-block;
        transition: transform 0.2s ease-out;
      }

      .faq-heading {
        text-align: center;
        font-size: 2em;
        color: #333333;
        margin-bottom: 20px;
      }

      .faq-section{
        display: flex;
        justify-content: space-between;

      }

      .faq-img-container {
        display: flex;
        justify-content: center;  /* Centers the image horizontally */
        align-items: center;      /* Centers the image vertically */
        height: auto;            /* Set a fixed height for the container, or adjust as needed */
        width: 100%              /* Full width */
      }
      
      .faq-img-container img {
        max-width: 100%;          /* Ensures the image does not exceed the container's width */
        max-height: 100%;         /* Ensures the image does not exceed the container's height */
        object-fit: contain;      /* Ensures the image maintains its aspect ratio without stretching */
      }
      
      


      .faq-container {
        width: 85%;
        max-width: 960px;
        display: flex
;
    flex-direction: column;
    justify-content: center;
    margin: 20px;
    padding: 30px;
      }

      .faq-item {
        border: 1px solid #000;
        border-radius: 10px;
        margin: 10px 0;
        overflow: hidden;
        transition: all 0.3s ease;
        
      }

      .faq-question {
        padding: 10px 20px;
        cursor: pointer;
        color: #000;
        display: flex
    ;
        justify-content: space-between;
        align-items: center;
        font-size: 1em;
      }

      .faq-answer {
        max-height: 0;
        padding: 0 20px;
        overflow: hidden;
        background-color: #ffffff;
        transition: max-height 0.3s ease, padding 0.3s ease;
        color: #333;
        font-size: 1em;
        border-radius: 0 0 10px 10px;
      }

      .faq-answer p {
        margin: 10px 0;
      }

      .faq-item.active .faq-answer {
        max-height: 280px;
        padding: 0px 20px;
        
      }

      .faq-item.active{
        border: 2px solid #000;
        box-shadow: 6px 6px 0px 0px black; /* Extra black border effect */
      }

      .faq-item.active .faq-question {
        color: #000;
        font-weight: 500;
        
      }

      

      .faq-item.active .faq-question::after {
        content: '-';
       
      }

      .faq-question::after {
        content: '+';
        font-size: 1.5em;
        color: #000;
      }

      /* For screens smaller than 1200px (laptops) */
@media (max-width: 1200px) {
  .faq-section {
    flex-direction: column;
    align-items: center;
  }

  .faq-container {
    width: 80%;
  }
}

/* For screens smaller than 768px (tablets and smaller laptops) */
@media (max-width: 768px) {
  .faq-section {
    flex-direction: column-reverse;
    align-items: center;
  }

  .faq-container {
    width: 90%;
    padding: 20px;
  }

  .faq-item {
    margin: 8px 0;
  }

  .faq-img-container img {
    width: 100%;
    height: auto;
  }
}

/* For screens smaller than 480px (smartphones) */
@media (max-width: 480px) {
  .faq-heading {
    font-size: 1.5em;
    margin-bottom: 15px;
  }

  .faq-container {
    width: 100%;
    padding: 15px;
  }

  .faq-item {
    margin: 5px 0;
  }

  .faq-question {
    font-size: 0.9em;
  }

  .faq-answer p {
    font-size: 0.9em;
  }
}

      /* faq styles end */


      /*footer */

      footer {
        box-sizing: border-box;
        color: #333; /* Darker text color for light theme */
        background-color: #fff; /* Light background color */
        display: inline-flex;
        width: 100%;
        margin-top: 50px;
        padding: 20px 0; /* Add padding for better layout */
      }
      
      .footer-container_1 {
        margin: 25px;
        width: 50%
      }
      
      .footer-container_1 h4 {
        font-family: 'Lora';
        font-size: 64px;
        color: #333; /* Darker color for headings */
        margin: 25px;
      }
      
      .footer-container_1 p {
        font-size: 14px;
        color: #666; /* Medium gray for secondary text */
        margin-left: 25px;
        margin-right: 25px;
        margin-bottom: 15px;
        margin-top: 15px;
      }
      
      .footer-container_1_experts_box img {
        width: 45px;
        height: auto;
        margin-right: 22px;
        border-radius: 50%;
        border: 1px solid #333; /* Darker border color */
      }
      
      .footer-container_1_experts_box {
        margin: 25px;
      }
      
      .footer-container_1_foot {
        margin: 25px;
        display: inline-flex;
      }
      
      .footer-container_1_foot_rect {
        width: 2px;
        height: 18px;
        background-color: #333;
      }
      
      .footer-container_1_foot a {
        font-size: 10px;
        margin: 5px;
        margin-top: 0px;
        color: #333;
        cursor: pointer;
        margin-left: 17px;
      }
      
      .footer-container_2 {
        display: inline-flex;
        flex-direction: column;
        width: 33.33333%;
        margin-top: 70px;
      }
      
      .footer-container_2 h6 {
        font-family: "Lora";
        font-size: 25px;
        color: #555; /* Slightly lighter color for subheadings */
        margin-bottom: 10px;
      }
      
      .footer-container_2 a {
        font-size: 20px;
        text-decoration: none;
        cursor: pointer;
        color: #333; /* Darker link color */
      }
      
      .footer-container_3 .email-form-container {
        display: none;
        position: relative;
        width: 91%;
        margin: 0 auto;
        padding: 20px;
        border-radius: 5px;
        background-color: #fff; /* White background for email form */
        box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Light shadow for subtle separation */
      }
      
      .footer-container_3 p {
        font-family: 'Lora';
        font-size: 21px;
        color: #333; /* Darker color for form text */
        margin: 10px;
      }
      
      .footer-submit-btn {
        margin-left: 10px;
        padding: 10px 20px;
        border: none;
        background-color: #333; /* Darker button background */
        color: white; /* Light text on button */
        border-radius: 5px;
        cursor: pointer;
      }
      
      .schedule-meeting {
        border-radius: 8px;
        background-color: #E9FF62; /* Darker background */
        color: black;
        transition: background-color 0.3s ease;
        padding: 5px 24px;
        padding-top: 0;
        text-decoration: none;
      }
      
      .schedule-meeting:hover {
        background-color: #000; /* Slightly lighter shade on hover */
        color: #fff;
      }
      
      .schedule-meeting svg {
        transition: transform 0.3s ease;
      }
      
      .schedule-meeting:hover svg {
        transform: rotate(44deg);
        fill: #fff;
      }

      a{
        text-decoration: none;
      }
      
      @media only screen and (max-width: 600px) {
        footer {
          display: inline-flex;
          flex-direction: column;
          margin-top: 50px;
          zoom: 100%;
        }
      
        .footer-container_1,
        .footer-container_2,
        .footer-container_3 {
          width: 100%;
          margin: 15px 0;
        }
      
        .footer-container_1 h4 {
          font-size: 32px;
          margin: 10px 0;
          text-align: center;
        }
      
        .footer-container_1 p {
          margin: 10px 20px;
          font-size: 12px;
          text-align: center;
        }
      
        .footer-container_1_experts_box {
          margin: 0 auto;
          display: flex;
          justify-content: center;
        }
      
        .footer-container_1_experts_box img {
          width: 24px;
          margin-right: 10px;
          height: 24px;
        }
      
        .footer-container_1_foot {
          display: flex;
          text-align: center;
          margin: 15px 0;
          justify-content: space-evenly;
        }
      
        .footer-container_1_foot_rect {
          display: none;
        } 
        .footer-container_1_foot a {
          font-size: 12px;
          margin: 5px;
        }
      
        .footer-container_2 h6 {
          font-size: 18px;
          margin-bottom: 5px;
        }
      
        .footer-container_2 a {
          font-size: 16px;
          margin-bottom: 5px;
        }
      
        .footer-container_3 .email-form-container {
          padding: 10px;
        }
      
        .footer-container_3 p {
          font-size: 16px;
          margin: 5px 0;
        }
      
        .footer-submit-btn {
          padding: 8px 16px;
          font-size: 14px;
          margin: 0 auto;
        }
      
        .newletter-signup-form {
          flex-direction: column;
          align-items: center;
        }
      
        .footer-container_2 {
          margin: 10px;
        }
        .email-input {
          width: 100%;
          margin-bottom: 10px;
        }
      }


      /* footer style end*/

      .container-waystar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
     
        color: #000;
        padding-left: 20px;
        padding-top: 20px;
    }

    .headline-waystar {
        font-size: 8em;
        font-weight: bold;
        margin-bottom: 20px;
        line-height: 1.2;
        max-width: 1210px;
        overflow-x: clip;
        text-align: left;
    }

    .subtext-waystar {
        font-size: 1.2em;
        line-height: 1.6;
        max-width: 500px;
        margin-bottom: 20px;
    }

    .button-waystar {
        padding: 10px 20px;
        background-color: #007bff;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        font-weight: bold;
    }

    .content-waystar {
      display: flex;
      gap: 40px;
    
      margin: 125px auto;
    }

    .left-section-waystar {
        max-width: 300px;
    }

    .left-section-waystar h3 {
        font-size: 1.5em;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .left-section-waystar p {
        font-size: 1em;
        color: #555;
        margin-bottom: 20px;
    }

    .right-section-waystar {
        background-color: transparent;
        border-radius: 1px;
        color: #000;
        position: relative;
        width: 811px;
    }

    video{
      border-radius: 14px;
    }

    .background-color-black-1{
      display: none
    }

    @media (max-width: 768px) {
      .background-color-black-1{
        display: block
      }

      video{
        border-radius: 14px;
      }

      
.container-waystar {
    padding: 20px;
}

.headline-waystar {
    font-size: 5em;
    max-width: 100%;
    margin-bottom: 15px;
    line-height: 1.1;
}

.subtext-waystar {
    font-size: 1em;
    max-width: 100%;
    margin-bottom: 15px;
}

.button-waystar {
    padding: 8px 16px;
    font-size: 0.9em;
}

.content-waystar {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.left-section-waystar {
    max-width: 100%;
}

.left-section-waystar h3 {
    font-size: 1.2em;
    margin-bottom: 8px;
}

.left-section-waystar p {
    font-size: 0.9em;
}

.right-section-waystar {
    width: 100%;
}

.right-section-waystar video {
    width: 100%;
}
}

.schedule-meeting {
border-radius: 8px;
background-color: #E9FF62; /* Darker background */
color: black;
transition: background-color 0.3s ease;
padding: 5px 24px;
padding-top: 0;
text-decoration: none;
}

.schedule-meeting:hover {
    background-color: #000; /* Slightly lighter shade on hover */
    color: #fff;
  }
  
  .schedule-meeting svg {
    transition: transform 0.3s ease;
  }
  
  .schedule-meeting:hover svg {
    transform: rotate(44deg);
    fill: #fff;
  }



  .services-cards{
    display: flex;
    gap: 20px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap; /* Ensures wrapping on smaller screens */
  }
  
  
  .services-heading h4{
   font-size: 40px;
   font-family: "Lora";
  } 
  .services {
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 50px 0px 140px 0px;
    flex-wrap: wrap; /* Ensures wrapping on smaller screens */
    padding: 80px 0;
  }
  
  .card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-in-out;
    width: 370px; /* Original width */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #666;
    
  }
  
  .card.visible {
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 10px;
    display: flex
;
    width: 606px;
    box-shadow: 4px 4px 0px 0px #fff;
    border: 1px solid #fff;
    zoom: 80%;
    transition: all 0.3s ease;
  }

  .card.visible:hover{
    box-shadow: 8px 8px 0px 0px #fff;
    border: 2px solid #fff;
  }
  
  .card .top {
    height: 295px;
    overflow: hidden;
    position: relative;
    
    min-height: 280px;
    margin: 10px;
    border-radius: 10px;
    width: 568px;
  }
  
  .card .top .gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .card .bottom {
   
    padding: 20px;
    text-align: left;
  }
  
  .card .bottom h3 {
    font-size: 2.3em;
    font-weight: bold;
    margin: 10px 0;
    color: #fff;
  }
  
  .card .bottom p {
    font-size: 1.2em;
    color: #555;
    margin: 10px 0;
    color: #999;
  }
  
  .card .bottom button {
    background: black;
    color: white;
    border: none;
    padding: 14px 30px;
    margin: 14px 0px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
  }
  
  .card .bottom button:hover {
    background: #333;
  }
  
  /* Media Query: For Tablets (1024px and below) */
  @media (max-width: 1024px) {
    .services {
      gap: 15px; /* Reduce gap between cards */
    }
  
    .card {
      width: calc(50% - 15px); /* Two cards per row */
    }
  
    .card .bottom h3 {
      font-size: 2.2em; /* Slightly smaller headings */
    }
  
    .card .bottom p {
      font-size: 1.1em; /* Adjust text size */
    }
  
    .card .bottom button {
      font-size: 15px; /* Adjust button size */
      padding: 12px 25px; /* Smaller padding */
    }
  }
  
  /* Media Query: For Smartphones (768px and below) */
  @media (max-width: 768px) {
    .services {
      gap: 10px; /* Smaller gap */
    }
  
    .card {
      width: 100%; /* Single card per row */
      max-width: 90%; /* Add some margin for smaller screens */
    }
  
    .card .top {
      height: auto; /* Adjust image height */
    }
  
    .card .bottom h3 {
      font-size: 2em; /* Adjust heading size */
    }
  
    .card .bottom p {
      font-size: 1em; /* Smaller text */
    }
  
    .card .bottom button {
      font-size: 14px; /* Adjust button font */
      padding: 10px 20px; /* Smaller button size */
    }
  
    .services-cards{
      display: flex;
      gap: 20px;
      flex-direction: column;
      align-items: normal;
      max-width: 100%;
    }
  }
  
  /* Media Query: For Very Small Screens (480px and below) */
  @media (max-width: 480px) {
    .services {
      gap: 5px; /* Minimal gap for compact view */
    }
  
    .card {
      width: 100%; /* Full-width cards */
    }
  
    .card .top {
      height: auto; /* Smaller image height */
    }
  
    .card .bottom h3 {
      font-size: 1.8em; /* Smaller headings */
    }
  
    .card .bottom p {
      font-size: 0.9em; /* Compact text */
    }
  
    .card .bottom button {
      font-size: 12px; /* Smaller button font */
      padding: 8px 15px; /* Compact button size */
    }
  }
  
  .card .bottom a {
    background: #fff;
    color: #000;
    text-decoration: none;
    display: inline-block;
    padding: 10px 30px;
    margin: 14px 0px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
  }
  
  .card .bottom a:hover {
    background: #999;
  }
  
  .services-heading h4{
    border: none;
    text-align: center;
  }
  


  .services{
    background-color: #141516FF;
  }
  .services .headline-waystar{
    color: #fff;
    margin: 75px 20px;
  }
