/* ----------------------------------------------------------------------------------------------------- */
/* FOOTER BASE */
.footer {
  padding: 60px 20px 30px;
  font-family: 'Arial', sans-serif;
}

/* CONTAINER */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* logo left, center links, contact right */
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* LOGO COLUMN */
.footer-col-about {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  width: 120px;
}

/* QUICK LINKS + SERVICES CENTERED */
.footer-links-col {
  display: flex;
  flex: 2 1 400px;
  justify-content: center;
  align-items: flex-start;
  gap: 100px; /* gap between Quick Links & Services */
}

/* COLUMNS */
.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  
}

.services-container {
  display: flex;
  justify-content: flex-start;
  padding-left: 40px; /* adjust as needed */
}
/* HEADINGS */
.footer-col h3 {
  color: #d4af37;
  font-size: 18px;
  margin-bottom: 12px;
  margin-top: 25px;
  text-align: left;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #d4af37;
}

/* CONTACT */
.footer-col-contact p {
  margin: 6px 0;
  border: none;  
  color: #000; 
  text-align: left;   
  padding-top: 1px;  /* no line */
}

.footer-col-contact i {
  margin-right: 2px;
  color: #000;
}

.footer-col-contact p i {
  color: #d4af37; /* apna color yaha daalo */
}

.footer-col-contact a {
  text-decoration: none;
  color: #000;
}

.footer-col-contact a:hover {
  color: #d4af37;
}
.footer-col-about p{
  padding-top: 2px;
}

/* SOCIAL ICONS */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #d4af37; /* black */
  color: #000;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* IMPORTANT: icon ko inherit karwao */
.social-icons a i {
  color: inherit;
}

/* Hover pe dono change honge */
.social-icons a:hover {
  background-color: #000; /* gold */
  color: #d4af37; /* icon black */
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(243, 210, 22, 0.3);
  padding-top: 20px;
  font-size: 14px;
  color: #000;
}

.footer-bottom a {
  color: #d4af37;
  text-decoration: none;
}

/* TABLET VIEW */
@media (max-width: 992px) {
  .footer-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px; /* reduce gap */
    text-align: center;
  }

  .footer-col-about {
    flex: 1 1 100%;
    align-items: center;
  }

  .footer-links-col {
    flex: 1 1 100%;
    justify-content: center;
    gap: 30px; /* smaller gap */
  }

  .footer-col {
    align-items: center;
  }

  .footer-col-contact {
    flex: 1 1 100%;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* MOBILE VIEW */
@media (max-width: 576px) {
 
  .footer {
    padding: 40px 15px 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px; /* compact spacing */
  }

  .footer-col-about {
    margin-bottom: 10px;
  }

  .footer-links-col {
    flex-direction: column; /* stack quick links + services */
    gap: 15px; /* reduce big gap */
    align-items: center;
  }

  .footer-col {
    width: 100%;
    align-items: center;
  }

  .footer-col h3 {
    margin-bottom: 8px;
  }

  .footer-links li {
    margin-bottom: 6px; /* tighter spacing */
  }

 .footer-col-contact h3,
.footer-col-contact p {
  text-align: left !important;
}

  .follow-title {
  margin-bottom: 5px; /* bring it closer to icons */
  text-align: left !important;
}

.footer-col-contact .social-icons {
  margin-top: 11px;

}
  .social-icons {
    justify-content: center;
    gap: 10px;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    font-size: 13px;
  }
}