.main-wrapper {
  position: relative;
  align-content: center;
  justify-content: center;
  width: 80vh;
  height: 80vh;
  opacity: 0; /* Start invisible */
  animation: fadeIn 1s ease-in-out forwards; /* Smoothly fade in */

}

/* Background rotating SVGs */
.background-strokes {
  position: absolute;
  top: 100%;
  left: 100%;
  transform: translate(-50%, -50%);
  width: 80vh;
  height: 80vh;
  pointer-events: none;
  z-index: 0;

}
@keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

.background-strokes img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: slow-rotate 24s linear infinite;
}

.background-strokes img:nth-child(1) {
  animation-delay: -6s;
}

.background-strokes img:nth-child(2) {
  animation-delay: -8s;
}

.background-strokes img:nth-child(3) {
  animation-delay: -10s;
}

@keyframes slow-rotate {
  100% { transform: translate(-50%, -50%) rotate(0deg); }
  0% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Circular Cards */
.circle-container {
  position: absolute;
  top: 100%;
  left: 100%;
  width: 80vh;
  height: 80vh;
  transform: translate(-50%, -50%);
  z-index: 2;
  overflow: visible; /* Allow glows to extend beyond container */
}

.card-for-companies {
width: 12vh;
height: 12vh;
border-radius: 50%;
background: #000; /* Black fallback */
border: 1.5px solid rgba(255, 255, 255, 0.15); /* Subtle border */
position: absolute;
transform: translate(-50%, -50%) rotate(calc(var(--i) * 110deg)) translate(38vh) rotate(calc(var(--i) * -110deg));
display: flex;
justify-content: center;
align-items: center;
transition: none; /* Disabled hover animation */
cursor: default; /* No pointer cursor */
text-align: center;
overflow: visible; /* Allow glow to extend beyond */

}

/* Glow layer - blurred, enlarged video that creates dynamic color-matched glow */
.card-video-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 103%; /* Very minimal glow - barely extends */
  min-height: 103%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.03);
  object-fit: cover;
  z-index: -1; /* Behind everything */
  border-radius: 50%;
  filter: blur(12px) brightness(0.8) saturate(1.1); /* Subtle, soft glow */
  opacity: 0.35; /* Much more subtle */
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1.03);
    filter: blur(12px) brightness(0.9) saturate(1.1);
    opacity: 0.35;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.035);
    filter: blur(14px) brightness(0.9) saturate(1.15);
    opacity: 0.4;
  }
}

/* Main video background - crisp and contained */
.card-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1; /* Above glow */
  border-radius: 50%;
  clip-path: circle(50%); /* Ensure perfect circular clipping */
}


.card-content-for-companies {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  font-size: 0.55rem;
  transition: opacity 0.4s ease;
}
.card-for-companies > div {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2; /* Ensure content sits above both videos */
  overflow: hidden; /* Keep content clipped to circle */
  border-radius: 50%;
}

.card-for-companies:hover {
  /* Hover disabled - no transformation or expansion */
  transform: translate(-50%, -50%) rotate(calc(var(--i) * 110deg)) translate(38vh) rotate(calc(var(--i) * -110deg));
}

.card-for-companies:hover .card-content-for-companies {
  opacity: 0; /* Keep content hidden - hover disabled */
}

.card-title-for-companies {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none; /* Disabled */
  z-index: 3; /* Above both videos and content div */
}

.card-title-for-companies img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.8)) brightness(1.05);
  position: relative;
  z-index: 4;
}

.card-for-companies:hover .card-title-for-companies {
  opacity: 1; /* Keep visible - hover disabled */
}

.center-content-for-companies {
  text-align: center;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0; /* Start invisible */
  animation: fadeIn 2.2s ease-in-out forwards; /* Smoothly fade in */
}

.title-for-companies {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.2;

}

.gradient-text-for-companies {
  background: linear-gradient(90deg, #5dffbb, #806bff, #7560ff, #ff718a);
  font-size: 3.5rem;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;

}

.subtitle-for-companies {
  font-size: 1rem;
  color: #ccc;
  max-width: 600px;
  font-weight: 550;
}

.badge img {
  width: 250px;
  height: 54px;
}

.get-access-button-for-companies {
  padding: 1.5vh 1.5vw;
  background: transparent;
  border: 1.5px solid lightgray;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  position: relative;
  z-index: 4;
  opacity: 0;
  animation: fadeIn 2.2s ease-in-out forwards; /* Smoothly fade in */
}

.get-access-button-for-companies:hover {
  background: lightgray;
  color: black;
  transform: scale(1.05);
}

