.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;
}

.card-for-companies {
width: 14vh;
height: 14vh;
border-radius: 50%;
background: #1a1a1a; /* very dark background */
border: 1px solid #3d3d3d; /* thin light gray 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: all 0.4s ease;
cursor: pointer;
text-align: center;
overflow: hidden;

}


.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%;
}

.card-for-companies:hover {
  transform: translate(-50%, -50%) rotate(calc(var(--i) * 110deg)) translate(30vh) rotate(calc(var(--i) * -110deg)) scale(1.8);
  background: #1a1a1a; /* very dark background */
border: 1px solid #3d3d3d; /* thin light gray border */
  opacity: 0.8;
}

.card-for-companies:hover .card-content-for-companies {
  opacity: 1;
}

.card-title-for-companies {
position: absolute;
  top: 2%;
  left: 2%;
  transform: translate(-1%, -1%);
  text-align: center;

  transition: opacity 0.1s ease;
}

.card-for-companies:hover .card-title-for-companies {
  opacity: 0;
}

.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);
}

