:root {
    --primary: #01b1fc;
    --secondary: #67ef00ff;
    --bg-color: #fdfdfd;
    --cta-gr : linear-gradient(to top right,#00b2fe , #4bffc6);
  }
  .navbar {
    padding: 0.2rem 1.2rem;
  }
  
.menuBtn {
    display: block;
    z-index: 9999;
  }
  .menu {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    background-color: #fdfdfd;
    position: fixed;
    top: 50%;
    right: 50%;
    -ms-transform: translate(50%, -200%);
    transform: translate(50%, -200%);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 999;
    gap: 3rem;
    transition: transform 0.2s ease-in-out;
  }
  .menu_link {
    font-size: clamp(40px, 4rem, 5vw);
  }
 
  .cta {
    color: transparent;
    background: var(--cta-gr);
    background-clip: text;
    -webkit-background-clip: text;
    background-clip: text;
    display: block;
    text-align: center;
    font-weight: 900;
  }
  .cta[aria-current="page"]{
    color: transparent;
    background: var(--cta-gr);
    background-clip: text;
    -webkit-background-clip: text;
    background-clip: text;
  }
  #menucheck:checked + .menu {
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
  
  .landing_page{
    gap: 3rem;
    background-attachment: scroll;
    background-position: center;
  }
  .niavigate_vid {
    max-width: 100%;
  }
  .home_text{
    text-align: center;
  }
 
  .contact_info_map{
    padding-top: 5rem;
  }
  .about_page{
    flex-direction: column;
    background-position: left;
  }
  .about_heading{
    text-align: center;
  }
  
  .about_wrapper{
    align-items: center;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  
  .about_image{
    display: none;
  }
  .services_wrapper{
    display: flex;
    flex-wrap: wrap;
  }
  .testimonial_cards{
    width: 100%;
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding: 1rem;
    flex-wrap: nowrap;
    justify-content: left;
  }
  .testimonial_card{
    flex: 0 0 calc(100% - 40px);
    scroll-snap-align: start;
    padding: 2rem 1rem;
  }
  .testimonial_text{
    padding: 1rem;
    line-height: 1.5;
  }
  .footer{
    padding: 2rem 1rem;
  }
  .partners_page {
   background-position: left;
}
.contact {
  background-position: right;
}