/* Footer section styling here */
.footer-section {
  background-color: var(--black-color);
  padding: 100px 0 60px 0;
}
.footer-wrapper {
  display: grid;
  grid-template-columns: 2fr 1.2fr 0.9fr 1fr;
  align-items: start;
  justify-content: space-around;
  /* gap: 60px; */
  color: var(--white-color);
}
.footer-wrapper h5 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.footer-company-profile img {
  width: 170px;
  margin-bottom: 1.2rem;
}
.footer-company-profile p {
  font-size: 1rem;
  color: #aaafb4;
}
.footer-services a,
.footer-our-pages a,
.footer-contact a {
  text-decoration: none;
  /* color: var(--white-color); 
  */
  color: #aaafb4;
  font-family: var(--font-family);
  font-size: 1rem;
}
.footer-services li,
.footer-our-pages li,
.footer-contact li {
  margin-bottom: 0.4rem;
}
.footer-services ul,
.footer-our-pages ul,
.offcanvas-menu ul,
.footer-contact ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-contact span svg path {
  fill: #aaafb4;
}
.footer-contact span svg {
  width: 20px;
  height: 20px;
}
.footer-contact li a {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
}
.copyright-footer {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
#footer-copyright {
  font-size: 0.9rem;
  color: #aaafb4;
}
.footer-social-links svg {
  width: 20px;
  height: 20px;
}
.footer-social-links {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.footer-social-links svg path {
  fill: #aaafb4;
}
.whatsapp-chat {
  position: fixed;
  bottom: 4%;
  right: 2%;
  z-index: 999;
  cursor: pointer;
}
/* OffCanvas Elements Designing Here*/
.offcanvas-menu h5 {
  font-size: 1.25rem;
  margin-inline-start: 1rem;
  margin-block-start: 0.5rem;
}

.offcanvas-menu ul {
  font-size: 1rem;
  margin-inline-start: 1rem;
}

.offcanvas-menu ul li a {
  color: var(--font-family);
  font-family: var(--font-family);
}

.offcanvas-menu ul li {
  margin-block-end: 0.4rem;
}

@media screen and (max-width: 1195px) {
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  /* Footer Section responsive styling here */
  .footer-section {
    padding: var(--section-padding);
  }
  .footer-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 25px 40px;
  }
  .footer-company-profile {
    max-width: 100%;
    grid-column: span 2;
  }
  .footer-contact {
    grid-column: span 2;
  }
  .footer-company-profile img {
    width: 150px;
  }
  .footer-wrapper h5 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  .copyright-footer {
    margin-top: 30px;
    flex-flow: column wrap;
    gap: 15px;
  }
}
