img#hero-parallax-image {
  transition: transform 0.15s linear;
}

.btn-hero-org {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 700;
  padding-left: 2rem;
  padding-right: 2rem;
  background: linear-gradient(180deg, #d90429 0%, #ef7201 100%);
  text-transform: none;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-hero-org::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #ff1a40 0%, #ff8f00 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-hero-org:hover {
  box-shadow: 0 0 15px rgba(239, 114, 1, 0.85), 0 0 30px rgba(217, 4, 41, 0.65) !important;
}

.btn-hero-org:hover::before {
  opacity: 1;
}

/* Gradient Glow Button for Hero Secondary */
.btn-secondary-glow {
  align-items: center;
  background-image: linear-gradient(144deg, #d90429, #ef7201 50%, #ff9f1c);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(239, 114, 1, 0.25) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #ffffff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary-glow:active,
.btn-secondary-glow:hover {
  outline: 0;
  color: #ffffff !important;
}

.btn-secondary-glow span {
  background-color: #ffffff;
  color: #d90429;
  padding: 16px 24px;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  display: block;
  transition: 300ms;
}

.btn-secondary-glow:hover span {
  background: none;
  color: #ffffff;
}

.btn-secondary-glow:active {
  transform: scale(0.9);
}

@media (min-width: 768px) {
  .btn-hero-org {}
}

/* ---------------------stat-section--------------------- */
.stats-strip {
  background: #1f2020;

  padding: 26px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.05);

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-wrapper {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  align-items: center;
}

.stat-item {
  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  min-height: 34px;
}

.stat-icon {
  font-size: 22px;

  color: #ef7201;

  margin-right: 14px;

  font-variation-settings: "FILL" 1;

  flex-shrink: 0;
}

.stat-text {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: Inter;

  color: #e5e2e1;
  text-transform: uppercase;
}

.stat-item:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;

  top: 50%;

  transform: translateY(-50%);

  width: 3px;

  height: 22px;

  background: linear-gradient(180deg, #d90429 0%, #ef7201 100%);

  border-radius: 999px;

  opacity: 0.9;
}

@media (max-width: 991px) {
  .stats-wrapper {
    grid-template-columns: 1fr 1fr;

    row-gap: 22px;
  }

  .stat-item::after {
    display: none;
  }

  .stat-text {
    font-size: 12px;
  }
}

/* ---------------------about-section--------------------- */
.why-mann-section {
  padding: 100px 0;
  background: #fff;
}

.why-mann-heading {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.heading-bar {
  width: 8px;
  min-height: 80px;

  background: linear-gradient(180deg, #e00034, #ef7201);

  border-radius: 20px;
}

.why-mann-title {
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  color: #68000e;

  margin-bottom: 10px;
}

.why-mann-subtitle {
  color: #ef7201;

  font-size: 26px;
  font-weight: 600;

  margin: 0;
}

.why-mann-text {
  font-size: 20px;
  line-height: 1.8;

  color: #2b2b2b;

  margin-bottom: 30px;
}

.stat-box {
  padding: 40px;

  background: #f7f9fb;

  border: 1px solid #e5e5e5;

  height: 100%;
}

.stat-number {
  font-size: 64px;

  font-weight: 800;

  background: linear-gradient(90deg, #e00034, #ef7201);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  margin-bottom: 10px;
}

.stat-label {
  text-transform: uppercase;

  letter-spacing: 2px;

  font-size: 14px;

  font-weight: 600;
}

.why-mann-image {
  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-mann-image img {
  width: 100%;

  height: 560px;

  object-fit: cover;

  transition: 0.6s;
}

.why-mann-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .why-mann-section {
    padding: 70px 0;
  }

  .why-mann-title {
    font-size: 32px;
  }

  .why-mann-subtitle {
    font-size: 20px;
  }

  .why-mann-text {
    font-size: 18px;
  }

  .why-mann-image img {
    height: auto;
  }
}

/* Partners Marquee Styles */
.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  min-width: 100%;
  animation: marquee-scroll 40s linear infinite;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.partner-logo {
  border-color: #e5e5e5 !important;
  transition: box-shadow 0.3s, transform 0.3s;
}

.partner-logo:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}