﻿/* ===== FOOTER ===== */
.site-footer {
  background: #0d0d0d;
  color: #aaa;
  padding: 60px 20px 30px;
  margin-top: 70px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ===== INNER (GRID only - removed duplicate flex) ===== */
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  align-items: flex-start;
}

/* ===== LEFT ===== */
.footer-left h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
  font-weight: 700;

  background: linear-gradient(90deg, #00c6ff, #00ffcc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-left p {
  font-size: 14px;
  color: #888;
  max-width: 260px;
  line-height: 1.5;
}

/* ===== GROUP HEADINGS ===== */
.footer-group h4 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #14b8a6;
}

/* ===== LINKS (merged footer-links + footer-social) ===== */
.footer-group a {
  display: block;
  margin-bottom: 6px;
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: 0.25s ease;
}

/* Hover */
.footer-group a:hover {
  color: #00ffcc;
  transform: translateX(4px);
}

/* ===== SOCIAL EXTRA STYLE ===== */
.footer-group a::after {
  content: "↗";
  font-size: 12px;
  margin-left: 6px;
  opacity: 0.6;
}
.footer-group.social a::after {
  content: "↗";
}
/* ===== DIVIDER ===== */
.footer-bottom {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 13px;
  color: #777;
}


  @media (max-width: 700px) {

  .site-footer {
    padding: 20px 16px 15px; /* 🔥 reduce top space */
    margin-top: 25px;        /* 🔥 upar ka gap kam */
  }

  .footer-left {
    margin-bottom: 15px;     /* 🔥 spacing control */
  }

}
  .footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 🔥 3 columns */
    gap: 20px;
    text-align: left;
  }

  /* LiveLens full width */
  .footer-left {
    grid-column: span 3;
  }

  .footer-left h3 {
    font-size: 1.1rem;
  }

  .footer-left p {
    font-size: 13px;
    margin-bottom: 10px;
  }

  /* headings */
  .footer-group h4 {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }

  /* links compact */
  .footer-group a {
    font-size: 12px;
    margin-bottom: 4px;
  }

  /* bottom */
  .footer-bottom {
    margin-top: 20px;
    font-size: 11px;
    text-align: center;
  }
