/* ===== Listing Card Style (Without Font Change) ===== */

.single-grid {
  border-radius: 20px;
  background: #f5f5f5;
  position: relative;
  padding: 15px;
  border: 2px solid #c3c6ce;
  transition: 0.5s ease-out;
  overflow: hidden;
  
}

/* Hover Effect */
.single-grid:hover {
  border-color: #176e8a;
  box-shadow: 10px 5px 18px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

/* Button Hidden Default */
.single-grid .card-button {
  text-decoration: none;
  text-align: center;
  transform: translate(-50%, 125%);
  width: 70%;
  border-radius: 1rem;
  background-color: #176e8a;
  color: #fff;
  font-size: 14px;
  padding: .5rem 1rem;
  position: absolute;
  left: 50%;
  bottom: 10px;
  opacity: 0;
  transition: 0.3s ease-out;
  cursor: pointer;
}

/* Button Show on Hover */
.single-grid:hover .card-button {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* Title Style */
.single-grid .title {
  font-weight: 600;
}

/* Smooth Image Hover (Optional Premium Feel) */
.single-grid .image img {
  transition: 0.4s ease;
}

.single-grid:hover .image img {
  transform: scale(1.05);
}

/* ================================
   FOOTER SOCIAL ICONS COMPLETE CSS
================================ */

.footer-social {
  display: flex;
  justify-content: center;   /* Center icons */
  align-items: center;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Icon Container */
.footer-social li a {
  width: 52px;
  height: 52px;
  background-color: #2d2d2d;   /* Default color */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Icon Style */
.footer-social li a i {
  color: #ffffff;
  font-size: 20px;
  transition: 0.3s ease;
}

/* ================================
   HOVER BRAND COLORS
================================ */

/* Facebook */
.footer-social li:nth-child(1) a:hover {
  background: #1877f2 !important;
  transform: scale(1.2);
}

/* Instagram */
.footer-social li:nth-child(2) a:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  ) !important;
  transform: scale(1.2);
}

/* YouTube */
.footer-social li:nth-child(3) a:hover {
  background: #ff0000 !important;
  transform: scale(1.2);
}

/* LinkedIn */
.footer-social li:nth-child(4) a:hover {
  background: #0077b5 !important;
  transform: scale(1.2);
}
/* Click Animation */
.footer-social li a:active {
  transform: scale(0.9);
}

/* Icon Slide Animation */
.footer-social li a:hover i {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .footer-social li a {
    width: 45px;
    height: 45px;
  }

  .footer-social li a i {
    font-size: 18px;
  }
}