.zoom-image-wrapper {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.zoom-img {
  transition: transform 0.4s ease, filter 0.3s ease;
  display: block;
  width: 100%;
}

.zoom-img:hover {
  transform: scale(1.08);
  filter: brightness(1.05);
}

 .company-ticker-container {
  overflow: hidden;
  position: relative;
}

.company-ticker {
  animation: scrollTicker2 30s linear infinite;
  white-space: nowrap;
}

.company-logo {
  height: 60px;
  margin: 0 30px;
  object-fit: contain;
}

@keyframes scrollTicker2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-80%);
  }
}
.stat-image-wrapper img {
  transition: transform 0.3s ease;
  width:50%;
  height: 50%;
  /* max-width: 100%;
  height: auto; */
}

.stat-image-wrapper img:hover {
  transform: scale(1.5);
}
.cmpy-visited{
    width: 50%;
    height: 50%;
}
.ticker-wrapper {
  position: relative;
  width: 100%;
  background-color: #faf9f8;
}

.ticker {
  animation: scroll-left1 30s linear infinite;
  display: flex;
  align-items: center;
  white-space: nowrap;
    width: max-content;
}

@keyframes scroll-left1 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.card {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: scale(1.03);
}

.bg-orange {
  background-color: #ff7f50;
}

.bg-yellow {
  background-color: #fcd34d;
}

.bg-blue {
  background-color: #3b82f6;
}

.bg-cyan {
  background-color: #06b6d4;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: transform 0.3s ease;
}

.service-card:hover .icon-circle {
  transform: scale(1.1);
}

.card a {
  text-decoration: none;
}

.card p {
  color: #d1d5db;
}
    .popup-content {
      background: #fff;
      padding: 30px;
      max-width: 600px;
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      border-radius: 10px;
      text-align: center;
      position: relative;
      animation: fadeIn 0.3s ease-in-out;
    }

    .popup-imageembed {
      width: 100%;
      height: auto;
      object-fit: contain;
      max-height: 70vh;
      border-radius: 10px;
      margin-top: 15px;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }