@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
.unique-header{
    font-family: 'Montserrat', sans-serif; 
    display: flex; 
    justify-content: flex-start; 
    align-items: center; 
    height: 100vh; 
    background: #fffcfc; 
    overflow: hidden; 
    position: relative;
}
.unique-btn{
    --clr-font-main: hsla(0 0% 20% / 100);
    --btn-bg-1: hsla(194 100% 69% / 1);
    --btn-bg-2: hsla(217 100% 56% / 1);
    --btn-bg-color: hsla(360 100% 100% / 1);
    --radii: 0.5em;
    cursor: pointer;
    padding: 0.9em 1.4em;
    min-width: 120px;
    min-height: 44px;
    font-size: var(--size, 1rem);
    font-weight: 500;
    transition: 0.8s;
    background-size: 280% auto;
    background-image: linear-gradient(
      325deg,
      var(--btn-bg-2) 0%,
      var(--btn-bg-1) 55%,
      var(--btn-bg-2) 90%
    );
    border: none;
    border-radius: var(--radii);
    color: var(--btn-bg-color);
    box-shadow:
      0px 0px 20px rgba(71, 184, 255, 0.5),
      0px 5px 5px -1px rgba(58, 125, 233, 0.25),
      inset 4px 4px 8px rgba(175, 230, 255, 0.5),
      inset -4px -4px 8px rgba(19, 95, 216, 0.35);
  }
  
  .unique-btn:hover {
    background-position: right top;
  }
  
  .unique-btn:is(:focus, :focus-visible, :active) {
    outline: none;
    box-shadow:
      0 0 0 3px var(--btn-bg-color),
      0 0 0 6px var(--btn-bg-2);
  }
  
  @media (prefers-reduced-motion: reduce) {
    .unique-btn{
      transition: linear;
    }
  }
  

.unique-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
    z-index: 1;
    transform: scale(1.2);
}

.unique-slider {
    width: 34%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    transform: skewX(-15deg);
}

.unique-marquee {
    display: flex;
    flex-direction: column;
    transform: skewX(-15deg);
    animation: unique-scrollDown 20s linear infinite;
}
.unique-marquee-reverse {
    animation: unique-scrollUp 20s linear infinite;
}

.unique-slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 1px 3px;
}

.unique-slider-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(1, 49, 49)20%, rgba(116, 118, 131, 0.5)70%);
    z-index: 2;
}

.unique-text-container {
    position: relative;
    z-index: 3;
    color: white;
    text-align: left;
    padding: 40px;
    margin-left: 5%;
}
.unique-text-container h1 {
    color: white;
    font-size: 48px;
    font-weight: 700;
}

.unique-text-container p {
    font-size: 20px;
    font-weight: 400;
    color: white;
}

@keyframes unique-scrollDown {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}
@keyframes unique-scrollUp {
    from { transform: translateY(-50%); }
    to { transform: translateY(0); }
}

@media (max-width: 768px) {
    .unique-text-container {
        width: 90%;
        font-size: 5vw;
        padding: 20px;
        margin-left: 5%;
        margin-top:-70px;
        
    }
  }
  @media (max-width: 768px){
    .unique-text-container h1 {
      color: white;
      font-size: 20px;
      font-weight: 700;
     
      
  }
  
  .unique-text-container p {
      font-size: 12px;
      font-weight: 500;
      color: white;
  }
  }
  @media (max-width: 768px){
    .unique-slider-container::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgb(1, 49, 49)20%, rgba(116, 118, 131, 0.7)70%);
      z-index: 2;
  }
  
  }
/*client*/
   
@keyframes slides {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  .logos {
    overflow: hidden;
    padding: 30px 0px;
    white-space: nowrap;
    position: relative;
    margin-bottom:-0px;
  }
  
  .logos:before, .logos:after {
    position: absolute;
    top: 0;
    content: '';
    width: 150px;
    height: 100%;
    z-index: 2;
  }
  
  .logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0),);
  }
  
  .logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), );
  }
  
  .logo_items {
    display: inline-block;
    animation: 35s slides infinite linear;
  }
  
  .logos:hover .logo_items {
    animation-play-state: paused;
  }
  
  .logo_items img{
    height: 120px;
    gap:40px;
  }



.client-heading {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
}

.client-heading span {
  color: #067dfc; /* Color for 'Our' */
}

.client-heading {
  color: #329ec3; /* Color for 'Client' */
}
