/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f4fdf5;
  color: #2e7d32;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2e7d32;
  padding: 15px 30px;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
  font-weight: 700;
  font-size: 22px;
}

.navbar ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.navbar .btn {
  background-color: white;
  color: #2e7d32;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.navbar .btn:hover {
  background-color: #c8e6c9;
}

/* Hero Section */
.hero {
  background-color: #dcedc8;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  color: #1b5e20;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  color: #4e4e4e;
  margin-bottom: 20px;
}

.hero .btn {
  background-color: #2e7d32;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.hero .btn:hover {
  background-color: #1b5e20;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  padding: 50px 30px;
  background-color: #f4fdf5;
}

.card {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}

.card h3 {
  color: #2e7d32;
  font-size: 18px;
  margin-bottom: 8px;
}

.card p {
  color: #555;
  font-size: 14px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.card .btn {
  margin-top: 12px;
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.card .btn:hover {
  background-color: #1b5e20;
}

/* Footer */
footer {
  background-color: #2e7d32;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  margin-top: 40px;
}

.getstarted_btn {
  background-color: blue;
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer;
}

/* Optional: Custom Circle Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: rgba(46, 125, 50, 0.8);
  border: 2px solid white;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.3s ease;
  box-shadow: 0 0 10px rgba(46, 125, 50, 0.8);
  z-index: 9999;
}

.custom-cursor.click {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(255, 255, 255, 1);
}

/* (Optional) Remove blank cursor if undesired */
body {
  /* cursor: blank; */
}
