:root {
    --color-text: navy;
    --color-bg: papayawhip;
    --color-bg-accent: #ecdcc0;
    --size: clamp(10rem, 1rem + 40vmin, 30rem);
    --gap: calc(var(--size) / 14);
    --duration: 60s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
  }
  
  @media (prefers-color-scheme: dark) {
    :root {
      --color-text: papayawhip;
      --color-bg: navy;
      --color-bg-accent: #2626a0;
    }
  }
  
  * {
    box-sizing: border-box;
  }
  
  /* body {
    display: grid;
    align-content: center;
    overflow: hidden;
    gap: var(--gap);
    width: 100%;
    min-height: 100vh;
    font-family: system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-bg);
  } */
  
  .marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    mask-image: linear-gradient(
      var(--mask-direction, to right),
      hsl(0 0% 0% / 0),
      hsl(0 0% 0% / 1) 20%,
      hsl(0 0% 0% / 1) 80%,
      hsl(0 0% 0% / 0)
    );
  }
  
  .marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .marquee__group {
      animation-play-state: paused;
    }
  }
  
  .marquee--vertical {
    --mask-direction: to bottom;
  }
  
  .marquee--vertical,
  .marquee--vertical .marquee__group {
    flex-direction: column;
  }
  
  .marquee--vertical .marquee__group {
    animation-name: scroll-y;
  }
  
  .marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: -3s;
  }
  
  @keyframes scroll-x {
    from {
      transform: translateX(var(--scroll-start));
    }
    to {
      transform: translateX(var(--scroll-end));
    }
  }
  
  @keyframes scroll-y {
    from {
      transform: translateY(var(--scroll-start));
    }
    to {
      transform: translateY(var(--scroll-end));
    }
  }
  
 .brand-wrapper{
    margin-bottom: 60px !important;
 }
  .marquee--vertical svg {
    aspect-ratio: 1;
    width: calc(var(--size) / 1.5);
    padding: calc(var(--size) / 6);
  }
  
  /* Parent wrapper */
  .wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin: auto;
    max-width: 100vw;
  }
  
  .wrapper--vertical {
    flex-direction: row;
    height: 100vh;
  }
  
  /* Toggle direction button */
  .toggle {
    --size: 3rem;
    position: relative;
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: var(--size);
    height: var(--size);
    font: inherit;
    text-align: center;
    cursor: pointer;
    outline: none;
    border: none;
    border-radius: 50%;
    color: inherit;
    background-color: var(--color-bg-accent);
    z-index: 1;
  }
  
  .toggle:focus-visible {
    box-shadow: 0 0 0 2px var(--color-text);
  }
  
  .toggle span {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: calc(100% + 0.4em);
    width: fit-content;
    white-space: nowrap;
    transform: translateY(-50%);
    animation: fade 400ms 4s ease-out forwards;
    user-select: none;
  }
  
  .toggle svg {
    --size: 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--size);
    height: var(--size);
    fill: currentcolor;
    transform: translate(-50%, -50%);
    transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
  }
  
  .toggle--vertical svg {
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  
  @keyframes fade {
    to {
      opacity: 0;
      visibility: hidden;
    }
  }

  /* Product Section */


  .product-section{
    padding: 70px 0px 90px 0px;
  }
  .product-section .slider-img{
    height:80px;
  }

  @media screen and (max-width:600px){
    .product-section .slider-img{
        height:30px;
      }
  }

  .marquee--reverse{
    margin-top:30px;
  }

  .right-line:after {
    content:"";
    display: inline-block;
    height: 0.5em;
    vertical-align: bottom;
    width: 100%;
    margin-right: -100%;
    margin-left: 10px;
    border-top: 1px solid black;
}

/* Button Animation */

.GIT-btn {
  position: relative;
  display: block;
  box-sizing: border-box;
  padding: 14px 17px;
  border: 2px solid #0362BC;
  border-radius: 999px;
  font-size: 15px;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  color: #0362BC;
  top: 11px;
  background: none;
  text-transform: uppercase;
}

.sticky-header .GIT-btn{
  left: 25px !important;
}
.GIT-btn span {
  font-weight: 900;
  mix-blend-mode: difference;
}

.GIT-btn:before,
.GIT-btn:after {
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: #0362BC;
  transition: transform 0.4s;
  will-change: transform;
}

.GIT-btn:before {
  left: -100%;
}

.GIT-btn:after {
  left: 100%;
}

.GIT-btn:hover:before {
  transform: translateX(100%);
}

.GIT-btn:hover:after {
  transform: translateX(-100%);
}

/* Products... */

.prod-icon{
  height:80px;
  width: auto;
  object-fit: contain;
}

.services-carousel .owl-carousel .owl-nav.disable{
  display: block !important;
}


/* =============== Mobile Menu =============== */
/* Smooth transition for the mobile menu visibility */
body {
  transition: all 0.3s ease; /* Add transition for smooth animation */
}

/* body.mobile-menu-visible {
  overflow: hidden; 
} */
/* Prevent scrolling when the menu is visible */
/* Smooth animation when the mobile menu is being closed */
/* .mobile-menu {
  transition: transform 0.3s ease; 
  transform: translateX(100%); 
} */

/* body.mobile-menu-visible .mobile-menu {
  transform: translateX(0); 
} */

/* Optional: If you have backdrop, you can animate it as well */
/* .mobile-menu .menu-backdrop {
  transition: opacity 0.3s ease;
  opacity: 0;
} */
/* 
body.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 1;
} */


  