/* ==========================================================================
   About Page Specific Styles
   ========================================================================== */

/* Hero / About Sections */
.about-image-wrapper {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}

.about-pattern {
  position: absolute;
  top: -10px;
  right: 0;
  z-index: 0;
  width: 100%;
  max-width: 200px;
  opacity: 0.6;
}

.play-btn-wrapper {
  position: absolute;
  top: 35%;
  right: -20px;
  z-index: 2;
}

.play-btn-outer {
  width: 80px;
  height: 80px;
  background: rgba(96, 0, 109, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-ring 2s infinite;
}

.play-btn-inner {
  width: 50px;
  height: 50px;
  box-shadow: 0 10px 20px rgba(180, 29, 245, 0.3);
  transition: transform 0.3s ease;
}

.play-btn-wrapper:hover .play-btn-inner {
  transform: scale(1.1);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(96, 0, 109, 0.3);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(96, 0, 109, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(96, 0, 109, 0);
  }
}

.badge-soft-purple {
  padding: 10px 24px;
}

/* Removed about-heading as it is now .section-title in style.css */

.about-text {
  max-width: 550px;
}

.btn-purple {
  padding: 12px 28px;
  border: none;
}

.btn-purple:hover {
  background-color: var(--color-primary-hover) !important;
}

@media (max-width: 991.98px) {
  .play-btn-wrapper {
    right: -10px;
  }
}

/* Coworker Carousel */
.coworker-icon {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -37px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 20px rgba(131, 7, 222, 0.2);
}

/* Reusable Carousel Navigation */
.custom-carousel-nav button.owl-prev,
.custom-carousel-nav button.owl-next {
  width: 60px;
  height: 60px;
  background: linear-gradient(192.77deg, rgba(131, 7, 222, 0.1) 44.1%, rgba(255, 255, 255, 0.1) 91.39%);
  border-radius: 50px;
  color: var(--color-heading) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  cursor: pointer;
  transition: all var(--transition-normal);
  margin: 0 8px;
  border-radius: 50% !important;
  outline: none !important;
}

.custom-carousel-nav button.owl-prev:hover,
.custom-carousel-nav button.owl-next:hover,
.custom-carousel-nav button.owl-prev:focus,
.custom-carousel-nav button.owl-next:focus {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  transform: translateY(-2px);
}

.custom-carousel-nav button.disabled {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

.coworker-carousel .owl-stage {
  display: flex;
}

.coworker-carousel .owl-item {
  display: flex;
}

.coworker-carousel .item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.coworker-carousel .item>.bg-gradient-light {
  flex: 1 1 auto;
}

/* Stats Section */
.stats-icon {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -37px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 20px rgba(131, 7, 222, 0.2);
}

.bg-gradient-stats {
  background: linear-gradient(270deg, #9810FA -0.02%, #8307DE 88.38%);
}

.stats-cards-wrapper {
  margin-top: -120px;
}



/* Mission Section */
.mission-img {
  border-radius: 25px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Team Section */
.team-card {
  position: relative;
  border-radius: 25px;
  background: linear-gradient(180deg, rgba(131, 7, 222, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
  /* Add padding to leave space for info card overlapping bottom */
  transition: transform var(--transition-normal);
  display: flex;
  justify-content: center;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-img-wrapper {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
}

.team-img {
  width: 100%;
  object-fit: scale-down;
  object-position: bottom;
  aspect-ratio: 1;
  border-radius: 25px;
}

.team-info {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  width: calc(100% - 32px);
  margin: auto;
  background-color: var(--color-card);
  border-radius: 25px;
  padding: 20px 34px;
  text-align: center;
  box-shadow: 0px 5px 22px 0px rgba(29, 29, 29, 0.09);
}

/* Banner Section CTA Button */
.btn-white-cta {
  background-color: var(--color-white) !important;
  color: var(--color-primary) !important;
  border: none;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.btn-white-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}