.experience-sec {
  padding: 80px 20px;
  background: #f8fafc;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.exp-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Left Side */
.exp-left {
  flex: 1;
  min-width: 320px;
}

.exp-left h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e293b;
}

.exp-subtitle {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.icon-box {
  width: 45px;
  height: 45px;
  background: #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.feature p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #64748b;
}

/* Right Side */
.exp-right {
  flex: 1;
  min-width: 320px;
}

.exp-right img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}


/* Responsive */
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }

  .exp-container {
    flex-direction: column;
  }

  .exp-left h2 {
    font-size: 32px;
  }
}



