
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 20px 6% 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    border-top: 2px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.footer h2 {
    color: var(--footer-border);
    font-size: 22px;
    font-weight: 600;
}

.footer h4 {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
}

.footer p {
    color: var(--footer-text);
    line-height: 1.5;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    display: inline-block;
    color: var(--text-primary) !important;
    text-decoration: none;
    margin-bottom: 6px;
    position: relative;
    transition: color 0.3s;
}

.footer-links a span {
    position: relative;
}

.footer-links a span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 3px;
    background: var(--footer-link-hover);
    box-shadow: 0 0 6px rgba(255, 140, 0, 0.6);
    transition: width 0.4s ease;
}

.footer-links a:hover span::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icons img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
    text-align: center;
    font-size: 12px;
    color: var(--footer-text);
}
.footer-links a {
  position: relative;
  width: fit-content;
  text-decoration: none;

}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 3px;
  background: #ff6f00;
  box-shadow: 0 0 6px rgba(255, 140, 0, 0.6);
  transition: width 0.4s ease;
}

.footer-links a:hover::after {
  width: 100%;
}