/* Footer link hover animation */
footer a.text-light {
  transition: color 0.3s ease, text-decoration 0.3s ease;
}
footer a.text-light:hover {
  color: #ffc107; /* Golden accent color */
  text-decoration: underline;
}

/* Social icons animation */
footer .fa-brands {
  transition: transform 0.3s ease, color 0.3s ease;
}
footer .fa-brands:hover {
  color: #ffc107;
  transform: scale(1.2);
}

/* Border line soft look */
footer .border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Column spacing and readability */
footer .col-lg-4 {
  margin-bottom: 2rem;
}
footer {
  line-height: 1.7;
}

/* Footer fade-in effect */
footer {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
footer.show {
  opacity: 1;
  transform: translateY(0);
}
.fa-phone:before {
    content: "\f095";
    color: #20b2aa!important;   
}
.fa-envelope:before {
    content: "\f0e0";
    color: #20b2aa!important;   
}
p.small.mt-3 {
    color: #c0c0c0 !important;
    font-style: italic!important;
    font-size: 12px!important;
}
@media(max-width:767px){
   p.small.mt-3 {
    color: #c0c0c0 !important;
    font-style: italic!important;
    font-size: 12px!important;
}
}