/* Footer Wrapper */
.footer {
  background-color: #f4f4f4; /* Light gray or match your theme color */
}

.footer-logo img {
  max-width: 120px; /* Adjust to your preferred size */
  height: auto; /* Keep aspect ratio */
  display: block; /* Helps avoid any inline gaps */
}

@media (max-width: 768px) {
  .footer-logo {
    text-align: center; /* Centers inline elements inside the container */
  }

  .footer-logo img {
    margin: 0 auto; /* Ensures the image itself is centered if block-level */
    display: block;
  }
}

/* Inner container for columns */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around; /* Space out columns */
  align-items: flex-start; /* Top-align the columns */
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

/* Each column */
.footer-column {
  flex: 1 1 200px;
  min-width: 200px; /* Helps columns not get too skinny */
}

/* Headings */
.footer-title {
  margin-bottom: 1rem;
  font-weight: bold;
  color: #012169; /* Example darker blue color */
  text-transform: uppercase;
  font-size: 1.5rem;
}

.footer-service-area {
  padding-left: 5px;
}

/* Service Area */
.footer-service-area .footer-logo {
  margin-bottom: 0.5rem;
}
.service-area-text {
  margin: 0.5rem 0;
}

/* Quick Links Menu */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
  text-decoration: none;
}
.footer-links a {
  color: #000; /* Adjust to desired text color */
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #007bff; /* Example hover color */
}

/* Office Hours */
.footer-office-hours .office-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-office-hours li {
  margin: 0.3rem 0;
}
.footer-office-hours li strong {
  display: inline-block;
  margin-right: 0.5rem;
}

.footer-contact-info {
  padding-left: 5px;
}

/* Contact Info */
.footer-contact-info .contact-phone {
  margin-bottom: 1rem;
  font-weight: bold; /* Emphasize phone number */
}

/* Social Icons */
.footer-social-icons {
  display: flex;
  gap: 1rem;
}
.footer-social-icons a {
  font-size: 1.5rem; /* Icon size */
  color: #444;
  transition: color 0.3s;
  text-decoration: none;
}
.footer-social-icons a:hover {
  color: #007bff;
}

/* Responsive: stack columns on small screens */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
  }
  .footer-column {
    width: 100%;
    text-align: center;
  }

  .footer-social-icons {
    justify-content: center;
  }
}

/* Company History Section */
.footer .company-history {
  /* Space below the section */

  padding: 1rem 2rem;

  border-bottom: 1px solid #ddd; /* Subtle border for separation */
}

.footer .company-history h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;

  text-transform: uppercase; /* Optional: Capitalize heading */
}

.footer .company-history p {
  font-size: 1rem;
  line-height: 1.6;

  margin: 0;
}

/* Social Media Icons */
.company-history .social-icons {
  margin-top: 1rem; /* Add space between the text and icons */
  display: flex;
  gap: 1rem; /* Space between icons */
}

.company-history .social-icons a {
  text-decoration: none;

  font-size: 1.5rem; /* Adjust icon size */
  transition: color 0.3s ease;
}

.company-history .social-icons a:hover {
  color: #007bff; /* Change color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer .company-history {
    text-align: center; /* Adjust padding for smaller screens */
  }
  .footer .company-history h4 {
    font-size: 1.25rem; /* Adjust heading size for smaller screens */
  }

  .footer .company-history p {
    font-size: 0.95rem; /* Adjust paragraph size for smaller screens */
  }

  .company-history .social-icons {
    justify-content: center; /* Center-align the icons */
  }
}
