/* =========================
   FOOTER FINAL FIXED
========================= */

.dncl-footer {
  background: #000644;
  color: #fff;
  width: 100%;
}

/* FULL WIDTH */
.dncl-footer-container {
  width: 100%;
  padding: 80px 60px;

  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

/* COLUMN */
.dncl-footer-col {
  display: flex;
  flex-direction: column;
}

/* LOGO */
.dncl-footer-brand img {
  max-width: 260px;
  margin-bottom: 20px;
}

/* TEXT */
.dncl-footer p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* HEADINGS */
.dncl-footer h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* LINKS */
.dncl-footer a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
}

.dncl-footer a:hover {
  color: #fbe202;
}

/* CONTACT */
.dncl-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* ICONS */
.footer-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* SOCIAL */
.dncl-footer-social {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.dncl-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dncl-footer-social img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.dncl-footer-social a:hover {
  background: #1e40ff;
  transform: translateY(-3px);
}

/* MAKE IN INDIA */
.dncl-footer-makeinindia img {
  max-width: 180px;
}

/* BOTTOM */
.dncl-footer-bottom {
  text-align: center;
  padding: 18px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .dncl-footer-container {
    grid-template-columns: 1fr 1fr;
    padding: 60px 30px;
  }
}

@media (max-width: 600px) {
  .dncl-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 20px;
  }

  .dncl-footer-col {
    align-items: center;
  }

  .dncl-footer-contact-item {
    justify-content: center;
  }

  .dncl-footer-social {
    justify-content: center;
  }
}