
.footer-cateagory-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: justify;
    word-spacing: -0.07rem;
}
.footer-content{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.footer-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
height: auto;
  overflow: visible;
}
.footer-contact-left {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 100vh;

  /* Hide scrollbar */
  overflow-y: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.footer-contact-left::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.footer-contact-right{
    width: 45%;
    display: flex;
    align-items: center;
    /* vertical center */
    justify-content: center;
    position: relative;
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-icon {
  width: 230px;
  height: 300px;
  filter: invert(1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 30%);
  transition: all 0.8s ease;
  z-index: 10;
}

.logo-icon.fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
}

.logo-icon.stopped {
  position: absolute;
  top: 100%;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 150%);
}
@media (max-width: 767px){
    .footer-cateagory-section {
    text-align: left;
    width: 100%;
}

}
@media (max-width: 767px) {
  .footer-content {
    flex-direction: column-reverse;
    align-items: center;
    padding: 0px 10px;
  }

  .footer-contact-left{
    overflow: visible;
    width: 100%;
    max-height: none;
  }

  .footer-contact-right{
    width: 100%;
    justify-content: center;
  }

  .logo-icon,
  .logo-icon.fixed,
  .logo-icon.stopped {
    position: static;
    transform: none;
    margin: 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 991.98px){
  .footer-contact-left {
  width: 60%;
}
.footer-contact-right{
    width:40%;
  }
  .logo-icon {
    width: 180px;
    height: 200px;
}
}