@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Poppins', sans-serif; */
}

body {
  background: linear-gradient(to right, #1f1c2c, #928dab);
  color: #fff;
  min-height: 100vh;
}

/* Section heading */
.section-heading {
  font-size: 40px;
  display: inline;
  font-weight: bold;
  color: white;
  text-align: center;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: scale(1);
}

.section-heading:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Card container */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 50px;
}

/* Individual card */
.card {
  border: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  width: 400px;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  padding: 20px;
  border-radius: 10px;
}

/* Card content */
.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
  text-decoration:underline;
}

.card-content p {
  font-size: 14px;
  color: white;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 10px 18px;
  background-color: #ff4b2b;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #ff6f61;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
}

.social-links a {
  color: #ffd;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.social-links a:hover {
  text-decoration: underline;
}
