.custom-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.custom-container h2{
  margin-bottom:50px;
}

h2.custom-heading {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#custom-purple-text {
  color:#ff00ff;
}

p.custom-lead {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555;
}

/* Grid layout */
.custom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Unique card class */
.custom-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px #ff00ff;
  transition: transform 0.3s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
}

.custom-card:hover {
  transform: translateY(-10px);
}

.custom-card h3 {
  color:#ff00ff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.custom-card p {
  color: #666;
}

.custom-highlight {
  background:#310b46;
  color: white;
  padding: 80px 20px;
  border-radius: 16px;
}

.custom-highlight h2 {
  color: #fff;
}

.custom-highlight p {
  color: #eee;
}

.custom-fade-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.custom-fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.custom-card.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  h2.custom-heading {
    font-size: 2rem;
  }

  .custom-card p, p.custom-lead {
    font-size: 1rem;
  }

  .custom-card {
    padding: 20px;
  }
}