/* =====================
   FOOTER BASE
   ===================== */

.footer {
  background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
  color: #fff;
  font-size: 15px;
}

/* TOP */
.footer-top {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  max-width: 170px;
  margin-bottom: 20px;
}

.footer-text {
  line-height: 1.7;
  color: #ddd;
}

/* HEADINGS */
.footer-col h4 {
  margin-bottom: 20px;
  font-size: 20px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* CONTACT */
.footer-col p {
  margin-bottom: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-col i {
  margin-right: 10px;
  color: #fff;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;   /* 🔥 LEFT + RIGHT dono side space */
}


.footer-bottom p {
  font-size: 14px;
  color: #ccc;
}

/* SOCIAL */
.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  margin-left: 10px;
  text-decoration: none;
}
.footer-social {
  margin-right: 40px;   /* 🔥 icons left shift */
}

.footer-social a:hover {
  background: #b51f1f;
  border-color: #b51f1f;
}

/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom-flex {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-col {
  padding-left: 20px;   /* 🔥 left text andar aayega */
}

/* Talk2Market Brand Style (Logo Based) */
.talk2market-brand {
  color: #ff8c1a;              /* ORANGE from logo */
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: 0.3s ease;
}

.talk2market-brand:hover {
  color: #ffffff;              /* White on hover */
}
.talk2market-brand {
  position: relative;
}

.talk2market-brand::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #ff8c1a;
  transition: 0.3s;
}

.talk2market-brand:hover::after {
  background: #ffffff;
}

/* ===== FOOTER SOCIAL ICONS ===== */

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: #19b5e5;          /* theme blue */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #b51f1f;          /* hover red */
  transform: translateY(-3px);
}

/* ICON FIX */
.footer-social i {
  line-height: 1;
}
