body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #fdfcfb, #e2d1c3);
  color: #333;
  overflow-x: hidden;
}
header {
  background: #3e8e41;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
}
header .badge {
  background: #ffcc00;
  color: #222;
  font-size: 0.9rem;
  padding: 5px 12px;
  border-radius: 20px;
  margin-left: 10px;
  animation: pulse 2s infinite;
}
.timeline {
  position: relative;
  margin: 40px auto;
  max-width: 900px;
  padding: 0 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #3e8e41;
}
.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease;
}
.timeline-dot {
  width: 18px;
  height: 18px;
  background: #3e8e41;
  border-radius: 50%;
  position: absolute;
  left: 32px;
  top: 4px;
  transition: transform 0.3s ease;
}
.timeline-dot:hover {
  transform: scale(1.3);
  background: #2c6d30;
}
.timeline-content {
  margin-left: 80px;
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex: 1;
  transition: transform 0.3s ease;
}
.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
.timeline-content h3 {
  margin: 0 0 10px;
  color: #3e8e41;
}
.timeline-content a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #fff;
  background: #3e8e41;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}
.timeline-content a:hover {
  background: #2c6d30;
}
form {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease forwards;
}
form h2 {
  text-align: center;
  color: #3e8e41;
  margin-bottom: 20px;
}
input, textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
input:focus, textarea:focus {
  border-color: #3e8e41;
  box-shadow: 0 0 6px rgba(62,142,65,0.4);
  outline: none;
}
textarea {
  resize: vertical;
  min-height: 100px;
}
button {
  width: 100%;
  background: #25d366;
  border: none;
  padding: 14px;
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
button:hover {
  background: #1ebe5d;
  transform: scale(1.03);
}
@media(max-width:768px){
  .timeline::before { left: 20px; }
  .timeline-dot { left: 12px; }
  .timeline-content { margin-left: 60px; }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.fade-in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.6s; }
.delay-3 { transition-delay: 0.9s; }


/* Existing styles above... */

.form-field {
  display: flex;
  flex-direction: column;
  padding: 12px;
  margin: 12px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: border 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.form-field:hover {
  border-color: #3e8e41;
  box-shadow: 0 0 8px rgba(62,142,65,0.2);
  transform: scale(1.01);
}
.form-field label {
  font-weight: bold;
  color: #3e8e41;
  margin-bottom: 6px;
}
.form-field input {
  border: none;
  padding: 8px 0;
  font-size: 1rem;
  background: transparent;
  cursor: pointer;
}
.form-field input:focus {
  outline: none;
}

/* For consistency */
textarea {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  min-height: 100px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
textarea:focus {
  border-color: #3e8e41;
  box-shadow: 0 0 6px rgba(62,142,65,0.4);
  outline: none;
}

/* existing styles above... */

.form-field select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  cursor: pointer;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
.form-field select:focus {
  border-color: #3e8e41;
  box-shadow: 0 0 6px rgba(62,142,65,0.4);
  outline: none;
}
