/* website footer */

/* .footer {
  background-color: #F8F8F8;
}
.footer-socials {
  display: flex;
  gap:40px;
}
.footer-socials a{
  color: var(--heading-text-color);
}
.footer-socials a:hover{
  text-decoration: underline;
}
.footer-bottom {
  padding: 16px;
  background-color: var(--bg-2-color);
}
.footer-bottom p{
  text-align: center;
  font-size: 16px;
  line-height: 24px;
} */


/* Footer Wrapper */
.em-footer-wrapper {
  background: #f8f8f8;
}

/* Main Container */
.em-footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 2fr;
  gap: 40px;
}

/* Logo + About */
.em-footer-logo {
  margin-bottom: 10px;
}

.em-footer-desc {
  margin-bottom: 25px;
}

/* Social Icons */
.em-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background: #fff;
  border-radius: 50%;
  color: var(--heading-text-color);
  font-size: 18px;
  margin-right: 6px;
  transition: 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.em-footer-social a:hover {
  background: #ff3b3b;
  color: #fff;
}

/* Column Headings */
.em-footer-heading {
  font-weight: 600;
  margin-bottom: 25px;
}

/* Navigation + Lists */
.em-footer-links,
.em-footer-sublist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.em-footer-links li,
.em-footer-sublist ul li {
  margin-bottom: 12px;
}

.em-footer-links a,
.em-footer-sublist a {
  color: var(--body-text-color);
  font-weight: 400;
  transition: color 0.3s ease;
}

.em-footer-links a:hover,
.em-footer-sublist a:hover {
  color: var(--heading-text-color);
}

/* Sublist headings */
.em-footer-sublist h5 {
  font-weight: 500;
  margin: 15px 0 8px;
}

/* Contact Info */

.em-footer-contact-block a {
  display: inline-block;
  color: #0077cc;
  text-decoration: none;
  margin: 6px 0;
}
.em-footer-contact-block a:hover {
  text-decoration: underline;
}
.em-footer-contact-block p {
  margin: 4px 0;
}
.em-footer-contact-block p strong{
  color: var(--heading-text-color);
}

/* Bottom Bar */
.em-footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 770px) {
  .em-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 450px) {
  .em-footer-container {
    grid-template-columns: 1fr;
  }

  .em-footer-social a {
    height: 32px;
    width: 32px;
  }
}


/* responsive css */
/* @media (max-width: 770px) {

.footer-main img{
  margin-bottom: 18px;
}
}   */