.footer{
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #797979;
    padding: 15px 0;
}

.footer ul li{
    list-style: none;
    display: inline-block;
    margin-left: 20px;
}
 /* Footer background */
 .footer-quick-links,
 .footer-services {
  background-color: #1c1c1c;
  padding: 40px 20px;
  color: #f5f5f5;
  text-align: center;
}

/* Common heading style */
.section-heading {
  font-size: 24px;
  margin-bottom: 20px;
  color: #0a0a0a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Quick Links */
.quick-links-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 30px;
}

.quick-link {
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.quick-link:hover {
  color: #fff;
}

/* Services List */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  color: #ddd;
}

/* Responsive - horizontal layout for larger screens */
@media (min-width: 600px) {
  .quick-links-container,
  .services-list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}


/*--------media query-------*/
@media (max-width: 600px){
    .footer{
        display: block;
        text-align: center;
    }
    .footer ul li{
        margin: 10px;
    }
    .footer ul{
        margin-top: 10px;
    }
}

