.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
.footerBox {
  width: 90%;
  display: flex;
  align-items: center;
  margin: 60px 0;
  justify-content: space-between;
}
.footerLeft img {
  height: 160px;
  width: auto;
}
.footerRight {
  width: 450px;
}
.footerRight h6 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #000;
  margin-bottom: 20px;
}
.socialBox {
  display: flex;
  align-items: center;
  gap: 20px;
}
.socialIcon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0px 75.26px 60.21px 0px #00000012;
  transition: all 0.3s ease-out;
      box-shadow: 0px 8px 20px rgba(0,0,0,0.25);

}
.socialIcon:hover {
  transform: scale(1.1);
}
.socialIcon img {
  width: 24px;
  
}
.copyrightBox {
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ee202d;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
.contactUs {
  margin: 0;
  margin-top: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #000;
  margin-bottom: 10px;
}
.contactBox {
  display: flex;
  gap: 10px;
}
.contactBox a {
  text-decoration: none;
  font-size: 16px;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.contactBox a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1440px) {
  .footerRight {
    width: 360px;
  }
  .footerLeft img {
    height: 110px;
  }
}

@media screen and (max-width: 1280px) {
  .footerRight {
    width: 300px;
  }
  .footerLeft img {
    height: 90px;
  }
  .footerRight h6 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .contactUs {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 990px) {
  .footerBox {
    margin: 50px 0;
  }
  .footerLeft img {
    height: 80px;
  }
  .footerRight {
    width: 280px;
  }
  .footerRight h6 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .contactUs {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .socialIcon {
    width: 35px;
    height: 35px;
  }
  .socialIcon img {
    width: 20px;
  }
  .copyrightBox {
    height: 60px;
  }
}

@media screen and (max-width: 768px) {
  .footerBox {
    flex-direction: column;
    gap: 30px;
  }
  .footerRight {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .socialMediaBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .footerRight h6 {
    font-size: 20px;
    margin-bottom: 0;
  }
  .contactUs {
    font-size: 20px;
    margin: 0;
  }
  .footerLeft img {
    height: 90px;
  }
}

@media screen and (max-width: 500px) {
  .footerLeft img {
    height: 65px;
  }
  .footerRight h6 {
    font-size: 16px;
  }
  .contactUs {
    font-size: 16px;
  }
  .socialMediaBox {
    gap: 16px;
  }
  .socialMediaBox{
    align-items: flex-start;
  }
  .contactBox{
    flex-direction: column;
  }
  .socialIcon {
    width: 30px;
    height: 30px;
  }
  .socialIcon img {
    width: 18px;
  }
  .copyrightBox {
    font-size: 14px;
  }
}
