.guru-section {
  background: linear-gradient(135deg, #1b1b1b, #2d2d2d);
  color: #fff;
}

.guru-subtitle {
  color: #fd7e14;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.guru-title {
  font-weight: 700;
  margin: 10px 0;
}

.guru-desc {
  max-width: 800px;
  margin: auto;
  opacity: 0.85;
}

.guru-content h3 {
  color: #fd7e14;
  margin-bottom: 15px;
}

.guru-content p {
  line-height: 1.7;
  opacity: 0.9;
}

.guru-points {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.guru-points li {
  padding-left: 25px;
  margin-bottom: 12px;
  position: relative;
}

.guru-points li::before {
  content: "🪔";
  position: absolute;
  left: 0;
}

/* Cards */
.guru-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.guru-card {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid #fd7e14;
  padding: 20px;
  border-radius: 12px;
  transition: 0.4s;
}

.guru-card h4 {
  color: #fd7e14;
  margin-bottom: 8px;
}

.guru-card:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.12);
}
