/* 
:root {
  --theme-color: #45f882;
  --theme-color2: #ffbe18;
  --theme-color3: #6240cf;


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.company-strip-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .company-strip-wrapper.left{
    padding: 30px 0 20px; 
}
  .company-strip-wrapper.right{
    padding: 10px 0 60px;
}

.company-strip {
    width: 100%;
    overflow: visible;
    position: relative;
}

.company-strip-track {
    display: flex;
    width: calc(200% + 40px);
    animation: moveLeft 30s linear infinite;
    gap: 20px;
}

.company-card {
    flex: 0 0 auto;
    min-width: 200px;
    height: 120px;
    background: rgba(20, 30, 40, 0.7); 
    
    border: 2px solid rgba(0, 255, 128, 0.4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 255, 128, 0.25); 

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 128, 0.25), transparent);
    transition: left 0.5s ease;
}

.company-card:hover::before {
    left: 100%;
}

.company-card:hover {
    border-color: #00ff80;
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 0 25px rgba(0, 255, 128, 0.6);
}

.company-name {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: #e0ffe0;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 15px;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(0, 255, 128, 0.7);
}
@keyframes moveLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes moveRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

  animation: moveLeft 30s linear infinite;
}

.company-strip-wrapper.right .company-strip-track {
  animation: moveRight 30s linear infinite;
}

.company-strip:hover .company-strip-track {
  animation-play-state: paused;
}

@media (max-width: 1200px) {
    .company-card {
        min-width: 180px;
        height: 110px;
    }
    .company-name {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .company-strip-wrapper {
        padding: 30px 0;
    }
    .company-card {
        min-width: 160px;
        height: 100px;
    }
    .company-name {
        font-size: 14px;
    }
    .company-strip-track {
        gap: 15px;
        animation-duration: 25s;
    }
}

@media (max-width: 768px) {
    .company-strip-wrapper {
        padding: 25px 0;
    }
    .company-card {
        min-width: 140px;
        height: 90px;
    }
    .company-name {
        font-size: 13px;
        padding: 0 10px;
    }
    .company-strip-track {
        gap: 12px;
        animation-duration: 20s;
    }
}

@media (max-width: 576px) {
    .company-strip-wrapper {
        padding: 20px 0;
    }
    .company-card {
        min-width: 120px;
        height: 80px;
        border-radius: 12px;
    }
    .company-name {
        font-size: 12px;
        padding: 0 8px;
    }
    .company-strip-track {
        gap: 10px;
        animation-duration: 18s;
    }
}

@media (max-width: 480px) {
    .company-card {
        min-width: 110px;
        height: 70px;
        border-radius: 10px;
    }
    .company-name {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    .company-strip-track {
        gap: 8px;
        animation-duration: 15s;
    }
} */

:root {
  --theme-color2: #ffbe18;
  --theme-color3: #6240cf;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Wrapper */
.company-strip-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.company-strip-wrapper.left {
  padding: 30px 0 20px;
}

.company-strip-wrapper.right {
  padding: 10px 0 60px;
}

/* Strip */
.company-strip {
  width: 100%;
  overflow: visible;
  position: relative;
}

.company-strip-track {
  display: flex;
  width: calc(200% + 40px);
  animation: moveLeft 30s linear infinite;
  gap: 20px;
}

/* Cards */
.company-card {
  flex: 0 0 auto;
  min-width: 200px;
  height: 120px;
  background: rgba(20, 30, 40, 0.7);
  border: 2px solid var(--theme-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px var(--theme-color);
}

/* Shine effect */
.company-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--theme-color) 50%,
    transparent
  );
  transition: left 0.5s ease;
}

.company-card:hover::before {
  left: 100%;
}

/* Hover effect */
.company-card:hover {
  border-color: var(--theme-color);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 0 15px var(--theme-color);
}

/* Company name */
.company-name {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--theme-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 15px;
  line-height: 1.2;
  text-shadow: 0 0 8px var(--theme-color);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Change text color on hover */
.company-card:hover .company-name {
  color: var(--theme-color);
  text-shadow: 0 0 12px var(--theme-color);
}

/* Animations */
@keyframes moveLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes moveRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Left-moving strip */
.company-strip-wrapper.left .company-strip-track {
  animation: moveLeft 30s linear infinite;
}

/* Right-moving strip */
.company-strip-wrapper.right .company-strip-track {
  animation: moveRight 30s linear infinite;
}

/* Pause on hover */
.company-strip:hover .company-strip-track {
  animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .company-card {
    min-width: 180px;
    height: 110px;
  }
  .company-name {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .company-strip-wrapper {
    padding: 30px 0;
  }
  .company-card {
    min-width: 160px;
    height: 100px;
  }
  .company-name {
    font-size: 14px;
  }
  .company-strip-track {
    gap: 15px;
    animation-duration: 25s;
  }
}

@media (max-width: 768px) {
  .company-strip-wrapper {
    padding: 25px 0;
  }
  .company-card {
    min-width: 140px;
    height: 90px;
  }
  .company-name {
    font-size: 13px;
    padding: 0 10px;
  }
  .company-strip-track {
    gap: 12px;
    animation-duration: 20s;
  }
}

@media (max-width: 576px) {
  .company-strip-wrapper {
    padding: 20px 0;
  }
  .company-card {
    min-width: 120px;
    height: 80px;
    border-radius: 12px;
  }
  .company-name {
    font-size: 12px;
    padding: 0 8px;
  }
  .company-strip-track {
    gap: 10px;
    animation-duration: 18s;
  }
}

@media (max-width: 480px) {
  .company-card {
    min-width: 110px;
    height: 70px;
    border-radius: 10px;
  }
  .company-name {
    font-size: 11px;
    letter-spacing: 0.5px;
  }
  .company-strip-track {
    gap: 8px;
    animation-duration: 15s;
  }
}
