/* ================= ROOT VARIABLES ================= */
:root {
  --primary: #0aad5e;
  --primary-dark: #067a42;
  --primary-light: #22e38a;

  --text-dark: #0f172a;
  --text-light: #475569;

  --bg-light: #f8fafc;
  --border-light: #e5e7eb;
  --header-height: 90px;
}

/* ================= GLOBAL ================= */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: transparent;
  color: var(--text-dark);
}

section {
  position: relative;
  overflow: hidden;
}
.page-wrapper {
   position: relative;
   z-index: 1;
}

/* ================= HERO SECTION ================= */

.hero-ev {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: transparent;
}

/* Grid background */
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;

  /* Light green grid */
  background-image:
    linear-gradient(
      to right,
      rgba(10, 173, 94, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      rgba(10, 173, 94, 0.08) 1px,
      transparent 1px
    );

  background-size: 64px 64px;

  /* Soft green base */
  background-color: #edf5f1;
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(10, 173, 94, 0.08),
    transparent 60%
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* Pill */
.hero-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(10, 173, 94, 0.1);
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 30px;
  margin-top: 100px;
}

/* Heading */
.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-content h1 span {
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Form */
.hero-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-form input {
  padding: 16px 20px;
  width: 320px;
  max-width: 100%;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  font-size: 0.95rem;
  outline: none;
}

.hero-form input:focus {
  border-color: var(--primary);
}

/* Button */
.hero-form button {
  padding: 16px 34px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary-light)
  );
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 173, 94, 0.3);
}
/* ===== WHO CARD (Right Side) ===== */

.who-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 22px;
  padding: 45px 40px;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 5px solid var(--primary);

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  transition: all 0.4s ease;
}

.who-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 40px 80px rgba(10, 173, 94, 0.25);
}

/* List Reset */
.who-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List Items */
.who-card li {
  font-size: 1.05rem;
  font-weight: 500;
  color: #1d1e1f;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.who-card li:last-child {
  border-bottom: none;
}

/* Hover Effect */
.who-card li:hover {
  transform: translateX(6px);
  color: var(--primary);
}

/* Optional: If using Bootstrap Icons instead of emoji */
.who-card li i {
  font-size: 1.2rem;
  color: var(--primary);
  background: rgba(10, 173, 94, 0.1);
  padding: 8px;
  border-radius: 50%;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .hero-content p {
    font-size: 1rem;
  }

  .hero-form {
    flex-direction: column;
    align-items: center;
  }

  .hero-form button {
    width: 100%;
    max-width: 320px;
  }
}