/* ===== LOGO SLIDER WRAPPER ===== */
.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* ===== MOVING TRACK ===== */
.logo-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

/* Pause on hover (optional) */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* ===== LOGO CARD ===== */
.logo-card {
    flex: 0 0 auto;
    width: 170px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== ANIMATION ===== */
@keyframes scrollLogos {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes bounceSlow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px); /* moves up slightly */
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes bounceSlow1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px); /* moves up slightly */
  }
  100% {
    transform: translateY(0);
  }
}

.bounce-animation {
  animation: bounceSlow 3s ease-in-out infinite;
}

.bounce-animation1 {
  animation: bounceSlow1 4s ease-in infinite;
}


/* ========== Glassmorphism Style ========== */
.floating-btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;

  backdrop-filter: blur(15px);
  background: rgba(28, 6, 221, 0.756);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.15);
  background: rgba(0, 4, 255, 0.756);
}

/* ========== Tooltip ========== */
.tooltip {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  opacity: 0;
  white-space: nowrap;
  transition: 0.3s;
}

.group:hover .tooltip {
  opacity: 1;
}

/* ========== Phone Vibration Animation ========== */
@keyframes vibrate {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(-15deg); }
  40% { transform: rotate(15deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}

.call-btn svg {
  animation: vibrate 0.6s ease-in-out;
  animation-delay: 6s;
  animation-iteration-count: infinite;
}

/* ========== Slide In On Load ========== */
.slide-in {
  opacity: 0;
  transform: translateY(80px) scale(0.9);
  animation: slideInAnimation 0.9s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes slideInAnimation {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}