/* Toggle Button at bottom left */
.partners-btn {
  position: fixed;
  bottom: 5px;
  left: 5px;
  z-index: 1001;
  background: #0484fe;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* Modal overlay */
.partners-modal {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Show modal */
.partners-modal.show {
  display: flex;
}

/* Modal content box */
.partners-content {
  background: #0484fe;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 320px;
  max-height: 80vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  align-items: center;
}

/* Close button */
.partners-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* Partners section */
.partners-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.partners-section a img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 6px;
  transition: transform 0.3s;
}

.partners-section a img:hover {
  transform: scale(1.1);
}

/* Copyright */
.copyright-section {
  font-size: 13px;
  text-align: center;
  border-top: 1px solid #0484fe;
  padding-top: 8px;
}

.async-hide {
        opacity: 0 !important
    }
    .social-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.social-sidebar a {
  background: #0484fe;
  color: #fff;
  padding: 12px;
  text-align: center;
  font-size: 20px;
  border-radius: 8px 0 0 8px;
  transition: background 0.3s;
}

.social-sidebar a:hover {
  background: #333; /* Example hover color (LinkedIn blue) */
}