

.social-container {
  position: relative;

}

.social-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.199); /* dark overlay */
  z-index: 0;
}

.social-container > * {
  position: relative;
  z-index: 1;
}

.social-card {
  border-radius: 10px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3sec ease;
}

.social-card:hover{
  transform: scale(1.1);
}
.social-header {
  padding: 10px 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

 .social-icon {
  font-size: 3rem;
  display: inline-block;
  border-radius: 30%;
  padding: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

/* Instagram Gradient */
.social-icon.insta {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
}

/* Twitter Blue */
    .social-icon.twitter {
        background-color: #000000 !important;
        color: white;
    }

/* YouTube Red */
.social-icon.youtube {
  background-color: #ff0000;
  color: white;
}

/* Hover Effects */
.social-icon:hover {
  transform: scale(1.25) rotate(10deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.15);
}


/* Optional: Add subtle bounce animation */
.social-icon:active {
  transform: scale(1.15);
}

@media screen and (max-width: 768px) {
    .socialMediaCard {
        margin-bottom:10px !important;
    }
}