/* Footer Styling */

#footer .bootscore-footer {
  display: flex !important;
  justify-content: center !important; /* Center the content horizontally */
  align-items: flex-start !important; /* Align items to the start vertically */
  padding: 2rem 0 !important;
  width: 100% !important; /* Ensure full width */
}

footer .rounded-container {
  background: rgba(255, 255, 255, 0.1) !important; /* Semi-transparent background */
  border-radius: 95px !important; /* Rounded corners */
  padding: 2rem !important;
  width: 90% !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  overflow: hidden; /* Ensure content doesn't overflow */
}

footer .rounded-container:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-2px) !important;
}

footer .bootscore-footer .container {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  margin: 0 auto !important;
  padding: 0 1rem !important; /* Add padding to the container */
}

footer .bootscore-footer .container .footer-links {
  margin-bottom: 1rem !important;
  flex: 1 !important;
}

footer .bootscore-info {
  padding: 1rem 0 !important;
  text-align: center !important;
}

footer .bootscore-info .bootscore-copyright {
  font-size: 0.8rem !important;
}

footer .footer-right-container .row {
  padding-left: 20px !important;
}

/* Mobile View Adjustments */
@media (max-width: 767px) {
  footer .bootscore-footer .container {
    flex-direction: column !important; /* Stack items vertically */
    align-items: flex-start !important; /* Align items to the left with some padding */
    text-align: left !important; /* Align text to the left */
  }

  footer .bootscore-footer .container .footer-links {
    width: 100% !important; /* Full width for links on mobile */
    margin-bottom: 1rem !important;
  }

  footer .rounded-container {
    width: 90% !important; /* Slightly less than full width on mobile */
    padding: 1rem 0rem !important; /* Adjust padding for mobile */
    border-radius: 30px !important;
  }

  footer .bootscore-footer .container .footer-logo,
  footer .bootscore-footer .container .footer-links,
  footer .bootscore-footer .container .footer-right-container {
    text-align: center !important; /* Align text and widgets to the left */
  }

  /* Specific adjustments for footer-2, footer-3, footer-4 */
  footer .bootscore-footer .container .footer-2,
  footer .bootscore-footer .container .footer-3,
  footer .bootscore-footer .container .footer-4 {
    width: calc(100% - 20px) !important; /* Adjust width to fit within container */
  }

  footer .row > * {
    width: 95% !important; /* Adjust width to fit within container */

  }
}
