@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  background: #0f0f0f; /* dark background (optional) */
}

.follow-container {
  text-align: center;
  padding: 10px 120px;
  font-family: "Poppins", sans-serif;
  margin-top: -190px;
}

.follow-container h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-btn {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.social-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

/* Hover gradients */
.insta:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.twitter:hover {
  background: #1DA1F2;
}

.linkedin:hover {
  background: #0A66C2;
}
