:root {
  --primary-green: #7cb342;
  --secondary-green: #9ccc65;
  --accent-yellow: #fdd835;
  --accent-red: #ef5350;
  --dark-text: #2c3e50;
  --light-text: #ffffff;
  --gray-text: #666;
  --sandy-bg: #f5e6d3;
  --light-bg: #fafaf8;
}

/* Heroism Section */
.heroism {
  position: relative;
  padding: 1rem 0 8rem;
  overflow: hidden;
}

.heroism-bg {
  position: absolute;
  inset: 0;
   background-color: var(--light-bg);
}

.heroism-glow {
  position: absolute;
  border-radius: 20%;
  filter: blur(10px);
}

.heroism-glow-1 {
  top: 1rem;
  left: 0.5rem;
  width: 18rem;
  height: 18rem;

}

.heroism-glow-2 {
  bottom: 1rem;
  right: 0.5rem;
  width: 18rem;
  height: 18rem;

}

.heroism-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

.heroism-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.heroism-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background-color: var(--light-bg);
  border: 1px solid #10b981;
  border-radius: 9999px;
  color: #10b981;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.badgeism-icon {
  width: 0.75rem;
  height: 0.75rem;
}

.heroism-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

.titleism-line {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heroism-description {
  font-size: 1.25rem;
  color: #d1d5db;
  line-height: 1.6;
}

.heroism-tagline {
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heroism-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.heroism-image {
  position: relative;
}

.heroism-image-glow {
  position: absolute;
  inset: 0;

  border-radius: 1rem;
  filter: blur(10px);
}

.heroism-img {
  position: relative;
  z-index: 10;
  width: 85%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.25);
  border: 1px solid #374151;
}

.heroism-content img {
  position: relative;
  z-index: 10;
  width: 85%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.25);
  border: 1px solid #374151;
}


.heroism-badge-floating {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;

  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.25);
  border: 1px solid #374151;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.floatingism-badge-icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  color: #10b981;
}

.floatingism-badge-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  filter: blur(8px);
}

.floatingism-badge-title {
  font-weight: 600;

}

.floatingism-badge-desc {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Responsive Design */
@media (min-width: 640px) {
  .heroism-buttons {
    flex-direction: row;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 1100px) {
  .mobile-menu-btn {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .heroism-content {
    grid-template-columns: 1fr 1fr;
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
  }

  .heroism-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .heroism-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .cta-title {
    font-size: 3rem;
  }
}

@media (max-width: 1100px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-desktop {
    display: none;
  }

  .heroism {
    padding: 1rem 0 5rem;
  }

  .heroism-title {
    font-size: 2rem;
  }

  .heroism-description {
    font-size: 1.125rem;
  }

  .heroism-tagline {
    font-size: 1.25rem;
  }

}

