footer {
  color: black;
  background-color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Align all sections at the same level */
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* ? Enlarged Logo (50% Larger) */
.footer-image {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 57px;
  margin-left: -50px;
}

.footer-logo-img {
  width: 283px; /* Increased by 50% */
  height: auto;
}

/* ? Locate Us (Center) */
.locate-us-certification {
  flex: 2;
  text-align: center;
  padding: 10px 20px;
}

/* ? Align "Locate Us" and "Stay Connected" at the Same Level */
.locate-us-certification h3,
.stayConnectedSec h3 {
  margin-top: 15px;
}

/* ? Locate Us Row - Address and Logos Side by Side */
.locate-us-certification .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 20px;
}

.locate-us-certification .location {
  flex: 1;
}

/* ? Reduce Address Margin (Closer to Company Name) */
.locate-us-certification .location h4 {
  margin-bottom: 5px;
}

.locate-us-certification .location p {
  margin-top: 3px;
}

/* ? Certification Logos Beside Address */
.locate-us-certification .certification-logos {
  flex: 1;
  display: flex;
  justify-content: left;
  gap: 15px;
}

.locate-us-certification .certification-logos img {
  width: 127px; /* Increased by 15% */
  height: auto;
  transition: transform 0.3s ease;
}

.locate-us-certification .certification-logos img:hover {
  transform: scale(1.1);
}

/* ? Stay Connected Section */
.stayConnectedSec {
  flex: 1;
  text-align: left;
  margin-left: 30px;
}

/* ? Stay Connected Title Left-Aligned */
.stayConnectedSec h3 {
  text-align: left;
  margin-top: 30px;
}

/* ? Enlarge Social Icons (50% Larger) */
#icon-footer {
  display: flex;
  justify-content: flex-start;
  margin-top: 15px;
}

#icon-footer img {
  width: 60px; /* Increased by 50% */
  transition: transform 0.3s ease;
}

#icon-footer img:hover {
  transform: scale(1.2);
}

/* ? Reduce Gap Between Telephone & Email */
.contact-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px; /* Reduced gap */
  margin-top: 5px;
}

.gradient-line {
  border: 0;
  border-top: 3px solid;
  border-image: linear-gradient(to right, #2F2B8C, #04BFBF) 1;
  height: 0;
  width: 90%; /* ? Keep it at 90% */
  margin: 0 auto; /* ? Center it */
}

.gradient-line-1 {
  border: 0;
  border-top: 3px solid;
  border-image: linear-gradient(to right, #2F2B8C, #04BFBF) 1;
  height: 0;
  width: 90%; /* ? Keep it at 90% */
  margin: 0 auto; /* ? Center it */
  margin-top: 25px;
}

.gradient-line-news {
  border: 0;
  border-top: 3px solid;
  border-image: linear-gradient(to right, #2F2B8C, #04BFBF) 1;
  height: 0;
  width: 90%; /* ? Keep it at 90% */
  margin: 0 auto; /* ? Center it */
  margin-top: 75px;
}


.phone-icon i {
  font-size: 24px; /* Slightly larger */
}

.contact-info {
  text-align: left;
}

.contact-info a {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.contact-info a:hover {
  transform: scale(1.1);
}

/* ? Small Bar Styling */
#smallBar {
  padding: 15px 0;
  background: linear-gradient(to right, #2F2B8C, #04BFBF);
  color: white;
  text-align: center;
  font-size: 18px;
  margin-bottom: 0; /* ? Remove White Space Below SmallBar */
}

#smallBar a {
  color: white;
  text-decoration: none;
}

#smallBar a:hover {
  text-decoration: underline;
}

/* ? Remove Extra White Space Below Footer */
footer {
  margin-bottom: 0;
}

@media only screen and (max-width: 440px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px;
  }

  .locate-us-certification h3, .stayConnectedSec h3 {
    margin-top: 0px;
    text-align: center;
  }

  .footer-image {
    margin: 0;
    margin-bottom: 20px;
  }

  .footer-logo-img {
    width: 230px;
  }

  .locate-us-certification {
    padding: 5px 10px;
  }

  #icon-footer {
    display: flex;
    margin-top: 15px;
    width: 75%;
    align-items: center;
    justify-content: center;
    margin-left: 15%;
  }

  .locate-us-certification .row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .locate-us-certification .certification-logos {
    justify-content: center;
  }

  .stayConnectedSec {
    margin: 20px 0;
  }

  #icon-footer img {
    width: 40px;
  }

  .contact-card {
    display: flex;
    gap: 8px;
    margin-top: 5px;
    justify-content: center;
  }

  .phone-icon {
    font-size: 20px;
    margin-right: 10px;
    text-align: center;
    align-items: center;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
  }
  
  .locate-us-certification .location h4 {
    text-align: center;
  }

  .contact-card {
    display: flex;
    gap: 8px;
    margin-top: 5px;
    justify-content: center;
  }

  .locate-us-certification .location p {
    margin-top: 3px;
    text-align: center;
    padding: 2%;
  }

  .gradient-line,
  .gradient-line-1,
  .gradient-line-news {
    width: 100%;
    margin-top: 20px;
  }

  #smallBar {
    padding: 10px 0;
    font-size: 16px;
  }
}