@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}



:root {
  --green: #2f7d32;
  --text: #333;
  --muted: #555;
  --card-bg: #fff;
  --card-shadow: rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f7f9f7;
  color: var(--text);
}

.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 100px 80px 40px;
  overflow: hidden;
}

/* HEADER */
header {
  position: absolute;
  top: 30px;
  left: 80px;
}

.logo {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 3rem;
}

.text-box h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--muted);
}

.cta-button {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(47, 125, 50, 0.3);
}

/* IMAGE */
.img-box img {
  max-width: 480px;
  animation: float 6s ease-in-out infinite;
}

/* CARDS */
.cards-section {
  margin: 5rem auto;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 10px 20px var(--card-shadow);
  transition: transform 0.2s ease;
}

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

.card h2 {
  margin-bottom: 0.75rem;
}

/* INFO */
.info-section {
  max-width: 900px;
  margin: 4rem auto;
  line-height: 1.7;
}

.info-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* FOOTER */
footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

footer a {
  color: var(--green);
  text-decoration: none;
}

/* CIRCLE EYE CATCHER */
.circle {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right, #4caf50, transparent 60%);
  animation: pulse 8s ease-in-out infinite;
  z-index: -1;
}

/* ANIMATIONS */
@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 0.85; }
  100% { opacity: 0.6; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* MOBILE */
@media (max-width: 768px) {
  .container {
    padding: 80px 20px 40px;
  }

  header {
    left: 20px;
  }

  .text-box h1 {
    font-size: 2.5rem;
  }
}
