/* Case Studies */
.case-studies {
  background: #f9f2f6;
  padding: 30px 20px;
  text-align: center;
}

.case-studies h2 {
  font-size: 2rem;
  color: #800040;
  margin-bottom: 10px;
}

.case-studies .intro {
  max-width: 90%;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #444;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.case-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-info {
  padding: 20px;
  text-align: left;
}

.case-info h3 {
  color: #800040;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.case-info p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.case-info a {
  color: #800040;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.case-info a:hover {
  color: #b30059;
}
