.footer-section {
  background-color: #000;
  padding: 50px 0;
}



.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
}

.footer-widget {
  flex: 1;
  min-width: 250px;
  margin: 0 15px;
}

.footer-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
  background-color: white;
  border-radius: 5px;
}

.footer-text {
  color: rgb(179, 179, 179);
  font-size: 14px;
  line-height: 1.6;
}

.footer-social-icon {
  margin-top: 20px;
}

.footer-social-icon span {
  font-weight: bold;
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icon {
  color: white;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.facebook-bg {
  background-color: #3b5998;
}

.youtube-bg {
  background-color: #ff0000;
}

.linkedin-bg {
  background-color: #0077b5;
}

.instagram-bg {
  background-color: #e4405f;
}

.footer-widget-heading h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 18px;
  /* margin-left: -15px; */
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-widget ul li {
  margin-bottom: 10px;
  width: 50%;
}

.footer-widget ul li a {
  color: rgb(179, 179, 179);
  text-decoration: none;
  font-size: 14px;
}

.footer-widget ul li a:hover {
  color: #fff;
}

.subscribe-form {
  margin-top: 20px;
}

.subscribe-form input {
  width: 70%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.subscribe-form button {
  padding: 10px 15px;
  background-color: #521138;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.subscribe-form button:hover {
  background-color: #6a1a4a;
}

.copyright-area {
  background-color: rgb(31, 30, 30);
  padding: 20px 0;
  text-align: center;
}

.copyright-text p {
  margin: 0;
  color: rgb(179, 179, 179);
  font-size: 14px;
}

.copyright-text a {
  color: #521138;
  text-decoration: none;
}

.copyright-text a:hover {
  text-decoration: underline;
}

/* Certification Logo */
.certification-logo {
  display: none;
  /* Hidden by default */
}

.desktop-only {
  display: block;
  /* Visible on desktop */
}

.mobile-only {
  display: none;
  /* Hidden on mobile */
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-widget {
    margin: 20px 0;
  }

  .footer-logo {
    flex-direction: column;
    gap: 10px;
  }

  .subscribe-form input {
    width: 100%;
  }

  .desktop-only {
    display: none;
    /* Hidden on mobile */
  }

  .mobile-only {
    display: block;
    /* Visible on mobile */
  }

  .certification-logo {
    display: block;
    /* Visible on mobile */
    margin-top: 20px;
  }

  .footer-widget ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    text-align: start;
  }

  .footer-widget ul li {
    width: 48%;
    /* Two items per row on small screens */
    margin-bottom: 10px;
    text-align: center;
  }
}
