/* === Base ===  */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #080808;
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
  color: #f4f4f4;
  text-align: center;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(205, 50, 75, 0.8), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  top: 25%;
  width: 80%;
  margin: 0 auto;
}

.hero-content h2 span.highlight {
  font-size: 64px;
  color: #ff3f60;
  font-weight: bold;
}

.hero-content hr {
  width: 200px;
  height: 3px;
  background: #f4f4f4;
  border: none;
  margin: 1rem auto;
}

.hero-content p {
  font-size: 20px;
  max-width: 700px;
  margin: 1rem auto;
  color: #f4f4f4;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s ease;
  border: 2px solid #f4f4f4;
}

.white-btn {
  background: #f4f4f4;
  color: #080808;
}

.white-btn:hover {
  background: transparent;
  color: #f4f4f4;
}

.pink-btn {
  background: #ff3f60;
  color: #fff;
  border-color: #ff3f60;
}

.pink-btn:hover {
  background: transparent;
  color: #ff3f60;
}

/* Bottom Icons */
.hero-bottom {
  position: absolute;
  bottom: 20px;
  width: 100%;
  background: rgba(255, 63, 96, 0.1);
  border-top: 2px solid #f4f4f4;
  backdrop-filter: blur(5px);
}

.hero-bottom ul {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  list-style: none;
  color: #f4f4f4;
}

/* === MISSION === */
.mission-section {
  background: #2e050b;
  padding: 80px 10%;
  color: #f4f4f4;
  text-align: left;
}

/* === HOW IT WORKS === */
.how-it-works {
  background: #f4f4f4;
  color: #080808;
  padding: 80px 10%;
}

.how-it-works h2 {
  font-size: 44px;
  font-weight: bold;
}

.how-it-works ul {
  list-style: none;
  padding: 0;
}

.how-it-works li {
  margin: 20px 0;
}

/* === REGISTER NOW === */
.register-now {
  background: #be2d46;
  color: #f4f4f4;
  text-align: center;
  padding: 80px 10%;
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* === QUICK SUPPORT === */
.quick-support {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background: #f4f4f4;
  padding: 40px 10%;
  color: #080808;
}

.support-text {
  max-width: 600px;
}

.support-text span {
  color: #be2d46;
  font-weight: bold;
}

.whatsapp {
  background: #4caf50;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  text-decoration: none;
}

.support-video video {
  width: 300px;
  height: auto;
  mix-blend-mode: darken;
}

/* === TEXT ANIMATION === */
.animate-charcter {
  background-image: linear-gradient(
    -225deg,
    #2e050b 0%,
    #fff 29%,
    #ff3f60 67%,
    #2e050b 100%
  );
  background-size: 200% auto;
  color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

.word-animate-1,
.word-animate-2,
.word-animate-3 {
  display: inline-block;
}

/* @keyframes wordFloat {
  0%,
  100% {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(0);
  }
} */

.word-animate-1 {
  animation: wordFloat 2.2s infinite ease-in-out;
}

.word-animate-2 {
  animation: wordFloat 2s infinite ease-in-out;
}

.word-animate-3 {
  animation: wordFloat 1.8s infinite ease-in-out;
}

@keyframes widthPulse1 {
  0%,
  100% {
    width: 0.7rem;
  }
  50% {
    width: 1.5rem;
  }
}

@keyframes widthPulse2 {
  0%,
  100% {
    width: 1rem;
  }
  50% {
    width: 1.8rem;
  }
}

@keyframes widthPulse3 {
  0%,
  100% {
    width: 0.6rem;
  }
  50% {
    width: 1rem;
  }
}

.width-animate-1 {
  animation: widthPulse1 1.2s infinite alternate ease-in-out;
}

.width-animate-2 {
  animation: widthPulse2 1.3s infinite alternate ease-in-out;
}

.width-animate-3 {
  animation: widthPulse3 1s infinite alternate ease-in-out;
}
