.about-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  opacity: 0;
  animation: fadeIn 1s ease-in-out 1.5s forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInDown 1s ease-in-out 2.5s forwards;
}

.about-tagline {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease-in-out 3s forwards;
}

.hero-background {
  position: absolute;
  top: 0rem;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
  background-attachment: fixed;
  background: url("../assets/background/stfx_bg_3.jpg") no-repeat center
    center/cover;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

/* About Sections General Styling */
.about-section {
  padding: 5rem 0;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: #00ff88;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #00ff88;
  border-radius: 3px;
}

/* Company Background Section */
.company-background {
  background-color: #0a0a0a;
  color: #f0f8ff;
}

.section-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.text-content {
  flex: 1;
}

.text-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.02);
}

/* Mission & Values Section */
.mission-values {
  background-color: #1a1a1a;
  color: #f0f8ff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background: #2a2a2a;
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #00ff88;
  z-index: -1;
  transition: width 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.value-card:hover::before {
  width: 100%;
  opacity: 0.1;
}

.mission-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid #00ff88;
}

.mission-card .value-icon {
  background: #00ff88;
  color: #0a0a0a;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: #00ff88;
}

.value-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #f0f8ff;
}

.value-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  text-align: center;
}

/* Partnerships Section */
.partnerships {
  background-color: #0a0a0a;
  color: #f0f8ff;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.partnership-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partnership-tier {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.partnership-tier:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.34);
}

.tier-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #00ff88;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0.5rem 0;
  margin: 2rem 0;
}

.partner-logo {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0%) brightness(1);
}

.tier-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

/* Partnerships Section - Icon-based */
.partner-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.partner-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(0, 255, 136, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.partner-feature:hover {
  background: rgba(0, 255, 136, 0.1);
  transform: translateY(-3px);
}

.partner-feature i {
  font-size: 1.2rem;
  color: #00ff88;
  min-width: 20px;
}

/* Compliance Badges */
.compliance {
  background-color: #1a1a1a;
  color: #f0f8ff;
}

.compliance-content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.compliance-text {
  flex: 1;
}

.compliance-text p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.compliance-item {
  margin-bottom: 2.5rem;
}

.compliance-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00ff88;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.compliance-list {
  list-style-type: none;
  padding-left: 0;
}

.compliance-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.compliance-list li::before {
  content: "•";
  color: #00ff88;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -3px;
}

.compliance-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.compliance-badge {
  background: #2a2a2a;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.compliance-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.1);
}

.compliance-badge i {
  font-size: 2.5rem;
  color: #00ff88;
  margin-bottom: 1rem;
  display: block;
}

.compliance-badge span {
  font-size: 1.1rem;
  color: #f0f8ff;
}

/* CTA Section */
.about-cta {
  background: linear-gradient(135deg, #00ff88, #00cc66);
  padding: 4rem 0;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #0a0a0a;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #0a0a0a;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-button {
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-button.primary {
  background: #0a0a0a;
  color: #00ff88;
  border: 2px solid #0a0a0a;
}

.cta-button.primary:hover {
  background: transparent;
  color: #0a0a0a;
}

.cta-button.secondary {
  background: transparent;
  color: #0a0a0a;
  border: 2px solid #0a0a0a;
}

.cta-button.secondary:hover {
  background: #0a0a0a;
  color: #00ff88;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .section-content,
  .compliance-content {
    flex-direction: column;
    align-items: center;
  }

  .image-content,
  .compliance-image {
    order: -1;
    margin-bottom: 2rem;
  }

  .about-hero-title {
    font-size: 2.8rem;
  }

  .about-hero-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .partner-logos {
    flex-direction: column;
    align-items: center;
  }

  .partner-logo {
    max-width: 180px;
  }
}

@media (max-width: 576px) {
  .about-hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-button {
    width: 100%;
  }

  /* .compliance-image {
    margin-left: -10px;
  } */

  .compliance-badge {
    background: #2a2a2a;
    padding: 1.1rem;
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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