/* ========================================
   ABOUT US BASE
======================================== */
.aboutus-section {
  /* CHANGED: 100px is now 40px */
  padding: 25px 5vw 120px;
  background: radial-gradient(circle at right, #0a0f2a 0%, #020617 80%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ========================================
   RIBBON HEADER
======================================== */
.about-header-wrap {
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
}

.about-ribbon-title {
  margin: 0;
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
}

.about-ribbon-accent {
  position: relative;
  display: inline-block;
}

.about-ribbon-accent::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, #f97316, #facc15);
  opacity: 0.9;
}

/* ========================================
   LAYOUT & ROTATING LOGO
======================================== */
.about-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
}

.about-logo-zone {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-rotating-logo {
  width: 380px;
  max-width: 90%;
  animation: slowRotate 35s linear infinite;
  opacity: 0.8;
  filter: drop-shadow(0 0 30px rgba(249,115,22,0.15));
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========================================
   TEXT CONTENT
======================================== */
.about-content-zone {
  flex: 0 0 50%;
}

.about-heading {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-pill {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  border: 1px solid rgba(250, 204, 21, 0.5);
  background: rgba(250, 204, 21, 0.05);
  margin-bottom: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #facc15;
  text-transform: uppercase;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

.about-text b {
  color: white;
  font-size: 1.2rem;
}

.about-highlight {
  display: block;
  margin-top: 1rem;
  color: #f97316;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 900px) {
  .about-layout {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .about-rotating-logo {
    width: 250px;
  }
}