/* ===============================
   EXPERIENCES SECTION STYLES
   =============================== */

.experiences {
  background: #f6f8f6;
  padding: 70px 20px;
}

.experiences .container {
  max-width: 1200px;
  margin: auto;
}

.experiences .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.experiences .section-title h2 {
  font-size: 32px;
  color: #228B22;
}

.experiences .section-title p {
  max-width: 650px;
  margin: 10px auto 0;
  color: #555;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.experience-box {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.experience-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.experience-box i {
  font-size: 40px;
  color: #228B22;
  margin-bottom: 20px;
}

.experience-box h3 {
  color: #228B22;
  margin-bottom: 12px;
  font-size: 20px;
}

.experience-box p {
  font-size: 15px;
  color: #555;
}

.experience-cta {
  text-align: center;
  margin-top: 50px;
}

/* Animation */
@keyframes experienceFade {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.experience-box {
  animation: experienceFade 1s ease both;
}
