.about-container {
  padding: 100px 0;
  background: #020518;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* === 3D CUBE ANIMATION === */
.scene {
  width: 180px;
  height: 180px;
  perspective: 800px;
  justify-self: center;
  filter: drop-shadow(0 0 15px rgba(84, 224, 255, 0.4));
  opacity: 0.95;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 14s infinite linear;
  transform: rotateX(15deg);
}

.cube-face {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 4px solid #54E0FF;
  box-shadow: 0 0 20px #54E0FF;
  border-radius: 4px;
}

.cube-face.front  { transform: translateZ(140px); }
.cube-face.back   { transform: translateZ(-140px); }
.cube-face.right  { transform: rotateY(90deg) translateZ(140px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(140px); }
.cube-face.top    { transform: rotateX(90deg) translateZ(140px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(140px); }

@keyframes rotateCube {
  0%   { transform: rotateX(15deg) rotateY(0deg); }
  100% { transform: rotateX(15deg) rotateY(360deg); }
}

/* === TEXT CONTENT === */
.about-text {
  z-index: 2;
}

.about-eyebrow-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.about-eyebrow {
  color: #54E0FF;
  font-weight: 500;
  text-transform: normal;
  letter-spacing: 1px;
  font-size: 14px;
}

.about-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, #0098F0, #002890, transparent);
  border-radius: 3px;
  width: 100px;
  margin-bottom: 20px;
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(to right, var(--white), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.about-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-cta {
  display: inline-block;
  padding: 7px 36px;
  border-radius: 24px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: none;
  font-size: 16px;
  background: linear-gradient(90deg, #0098F0, #002890);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 152, 240, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 152, 240, 0.45);
}

 .arrow {
  font-weight: bold;
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.about-cta:hover .arrow {
  transform: translateX(3px);
}

/* === RESPONSIVE: MOBILE === */
@media (max-width: 480px) {
      .about-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 80px;
    text-align: center;
  }

.scene {
  width: 100px;
  height: 100px;
  perspective: 800px;
}


.cube-face {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid #54E0FF;
  box-shadow: 0 0 12px #54E0FF;
  border-radius: 2px;
}

.cube-face.front  { transform: translateZ(80px); }
.cube-face.back   { transform: translateZ(-80px); }
.cube-face.right  { transform: rotateY(90deg) translateZ(80px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(80px); }
.cube-face.top    { transform: rotateX(90deg) translateZ(80px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(80px); }

  
  .about-eyebrow-container {
  gap: 12px;
  justify-content: center;
  margin-bottom: 10px;
}

.about-eyebrow {
  font-weight: 500;
  font-size: 12px;
}

.about-divider {
  height: 2px;
  border-radius: 3px;
  width: 85px;
  margin: 0 auto 18;
}

  .about-title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .about-desc {
    font-size: 14px;
    margin-bottom: 15px;
}

 .about-cta {
  padding: 4px 25px;
  font-weight: 500;
  font-size: 15px;
 }

 .arrow {
  font-weight: bold;
}
}