.icon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 500px;
}

/* Common Circular Icon Style */
.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 28px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.twitter {
  background: #1da1f2;
}

.whatsapp {
  background: #25d366;
}



/* --- ROW 2 BRAND BACKGROUNDS --- */
.telegram {
  background: #2aaaee;
}

.whatsapp-biz {
  background: #25d366;
  font-weight: bold;
  font-size: 20px;
}

/* Custom WhatsApp Business "B" Bubble */
.wa-biz-icon {
  border: 2px solid #ffffff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: Arial, sans-serif;
}

/* --- ROW 3 BRAND BACKGROUNDS --- */
.linkedin {
  background: #0a66c2;
}



/* Responsive scaling for mobile devices */
@media (max-width: 480px) {
  .icon-grid {
    gap: 12px;
    padding: 20px;
  }
  .social-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  .wa-biz-icon {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
}
