.custom-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;  /* Vertically center the columns */
  background: #fff;     /* Corrected color code */
  color: #000;          /* Changed text color for visibility */
  gap: 10px;            /* Decreased gaps */
}
.footer-column {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.footer-widget {
  margin-bottom: 20px;
}

.footer-widget-title {
  color: #ff9900;
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-widget ul {
  list-style: none;

}

.footer-widget ul li {
  margin-bottom: 8px;
}

.footer-widget ul li a {
  color: #000;
  text-decoration: none;
}

.footer-widget ul li a:hover {
  color: #fff;
}

.custom-footer > .footer-column:first-child img {
  max-width: 100px !important;  /* smaller size for logo */
  height: auto;
  margin-bottom: 10px;
}
.download-badge {
  max-height: 105px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-top: 16px;
}
.download-btns{
  margin-top: 20px;
}
.textwidget{
  color:#000;
}
.footer-column{
      margin-left: 92px;
}
ol, ul {
    margin: 23px 0 1.5em 0em;
}

/* Hide button by default */
.responsive-get-started-button {
  display: none;
}



/* Show only on mobile/tablet */
@media (max-width: 1024px) {

.page-template-employer-login .responsive-get-started-button,
.page-template-employer-dashboard .responsive-get-started-button {
  display: none !important;
}

  .responsive-get-started-button {
    display: flex;  
    justify-content: center;
    padding: 16px 20px;
    background-color: transparent;
  }

  .responsive-get-started-button .ast-custom-button {
    background-color: #A5C420;
    color: white;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease;
  }

  .responsive-get-started-button .ast-custom-button:hover {
    background-color: #8eb317;
  }
}

@media (max-width: 768px) {
  .custom-footer {
    flex-direction: column;
    align-items: center; /* center horizontally */
    padding: 30px 15px;
    gap: 25px;
    text-align: center; /* center text */
  }
  
  .footer-column:not(:first-child):not(:last-child) {
    display: none !important;
  }
  
  .custom-footer > .footer-column:first-child,
  .custom-footer > .footer-column:last-child {
    max-width: 250px;
    margin: 0 auto; /* center columns horizontally */
    text-align: center;
  }
  
  .footer-social-icons {
    margin-top: 15px;
    justify-content: center; /* center icons horizontally */
    display: flex;
    gap: 20px;
  }
  
  .footer-social-icons a img {
    width: 32px;
    height: 32px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }
  
  .footer-social-icons a:hover img {
    filter: none;
  }
  
  .download-badge {
    max-width: 160px !important;
    max-height: 50px !important;
    margin: 10px auto 0;
    display: inline-block;
  }
}


@media (max-width: 576px) {
.site-title a{
	font-size:larger;
}
}