<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.why-us-section {
  background-size: cover;
  padding: 60px 20px;
  text-align: center;
}

.why-us-text h1 {
  font-size: 3rem;
  color: #f2f2f2;
}

.why-us-text h2 {
  font-size: 2rem;
  font-weight: 400;
}

.highlight {
  color: #5182EF;
}

.orbit-container {
  position: relative;
  width: 700px;
  height: 700px;
  margin: 0 auto;
}

.center-image {
  position: absolute;
  width: 320px;
  height: 418px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
  z-index: 5;
  animation: float 6s ease-in-out infinite;
}

.center-image img {
  width: 110%;
  height: 110%;
  object-fit: cover;
}

.cloud {
  position: absolute;
  width: 200px;
  height: 130px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, #1c1c1c, #2a2a2a);
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.05);
  transition: all 0.4s ease;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 10;
  animation: float 6s ease-in-out infinite;
}

.cloud:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.6),
    0 0 24px rgba(0, 255, 255, 0.4),
    0 0 36px rgba(27, 45, 251, 0.3);
  z-index: 99;
}

.cloud .title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #5182EF;
  margin-bottom: 10px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.cta-box {
  margin-top: 50px;
}

.cta-box h3 {
  font-size: 1.6rem;
}

.cta-box p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.cta-button {
  width: 140px;
  height: 45px;
  background: linear-gradient(135deg, #FF0DF7, #1B2DFB);
  border: none;
  border-radius: 25px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(-135deg, #FF0DF7, #1B2DFB);
  box-shadow: 0 0 15px rgba(209, 231, 242, 0.4);
}

@media (max-width: 768px) {
  .orbit-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .center-image {
    position: static;
    transform: none;
    width: 220px;
    margin-bottom: 10px;
    animation: none;
  }

  .cloud {
    position: static;
    transform: none;
    width: 90%;
    max-width: 320px;
    margin: 10px auto;
    animation: none;
  }
}
</pre></body></html>