.rajmachi-experience-section {
  padding: 80px 20px;
  background-color: #fdfdfd;
  font-family: 'Poppins', sans-serif;
}

.experience-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.experience-text h2 {
  font-size: 2.2rem;
  color: #222;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
}

.experience-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.experience-text ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}
.experience-text ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
  position: relative;
  padding-left: 25px;
}
.experience-text ul li::before {
  content: '🔥';
  position: absolute;
  left: 0;
  top: 0;
}

.experience-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #27ae60;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.experience-btn:hover {
  background-color: #219150;
}

.experience-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* 💡 Mobile-first tweaks */
@media (max-width: 480px) {
  .experience-text h2 {
    font-size: 1.7rem;
    text-align: center;
  }

  .experience-text p,
  .experience-text ul li {
    font-size: 0.95rem;
    text-align: justify;
  }

  .experience-btn {
    display: block;
    text-align: center;
    width: 100%;
  }
}
