.footer {
  background: linear-gradient(to top, #000000, #1a1a1a);
  padding: 40px;
  border-top: 1px solid #333; /* <- This is the separating line at top */
}

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

.footer-top > div {
  margin: 10px;
}

.footer-navigation {
  display: flex;
  flex-direction: column;
  margin-left: 15% !important;
}

.footer-navigation h4 {
  margin-bottom: 10px;
}

.navigation-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* space between columns */
    min-width: 260px;
}

.navigation-columns .nav-column {
  flex: 1 1 100px;
}

.footer-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-navigation li {
  margin-bottom: 8px;
}

.footer-navigation a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px !important;
  font: var(--font-family-poppins);
}

.footer-navigation a,
.footer-contact a,
.footer-links a,
.footer-languages a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px !important;
  font: var(--font-family-poppins);
}

.footer-contact p,
.footer-location p {
  margin: 8px 0;
  font-size: 14px !important;
  font: var(--font-family-poppins);
  color: var(--primary-color);
  opacity: 0.8;
}

.footer-contact h4,
.footer-navigation h4,
.footer-social h4,
.footer-location h4 {
  font: var(--font-family-poppins) !important;
  font-size: 12px !important;
  opacity: .6;
  color: var(--primary-color);
}

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

.footer-social .social-icons i {
  font-size: 24px; /* size of the icon itself */
  color: #ffffff; /* icon color */
  
  width: 40px;
  height: 40px;
  
  border: 1px solid #333; /* white circle border */
  border-radius: 50%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  transition: all 0.3s ease;
}

.footer-social .social-icons i:hover {
  background-color: #ffffff;
  color: #000000; /* icon turns black on hover */
}

.footer-social {
  margin-right: 15% !important;
}


.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 12px;
}

.footer-links {
  display: block;
  gap: 10px;
}

.footer-bottom .footer-links a,
.footer-bottom .footer-links p{
  padding-bottom: 10px;
}

.footer-bottom .footer-links a,
.footer-bottom .footer-links p,
.footer-bottom .footer-languages a {
  color: var(--primary-color);
  font-size: 12px !important;
  opacity: .6;
}

.footer-languages {
  display: flex;
  gap: 10px;
}

@media (min-width: 769px) {
.footer-logo-mobile{
  display: none;
}
}

@media (max-width: 768px) {
  .footer-contact{
    display: none;
  }
  .footer-links{
    display: none;
  }
  .footer-languages{
    display: none;
  }
  .footer-navigation h4{
    visibility: hidden;
  }
  .footer-social h4{
    display: none;
  }
  .footer-bottom{
    display: none;
  }
  .footer-top {
    padding-bottom: 0px;
}
.footer {
  padding: 0px;
  background: black;
  border-top: 0px solid #333;
}
.footer-navigation {
  margin-left: 5% !important;
  border-top: 2px solid #797979;
  border-bottom: 2px solid #797979;
}
.footer-navigation a, .footer-contact a, .footer-links a, .footer-languages a {
  font-size: 16px !important;
  font-weight: bold;
  padding: 10px;
}
.footer-navigation li {
  margin-bottom: 25px;
}
.footer-social .social-icons i {
  background-color: #A4A7AE;
  border: 1px solid #A4A7AE;
  border-radius: 23%;
  color: black;
  margin-left: 25%;
}
.footer-logo {
  display: flex;
  flex-direction: column; /* Modified for mobile */
  align-items: center;
}

.footer-logo img {
  width: 40px; /* Modified for mobile */
  height: 40px; /* Modified for mobile */
  object-fit: contain;
}

.footer-logo span {
  margin-top: 4px;
  font-size: 1.5rem; /* Modified for mobile */
  font-weight: 600;
  color: var(--primary-color);
  font: var(--font-family-AtelierSansITCStdBook);
}
.footer-logo-mobile{
  margin-left: 5% !important;
}
}