
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@100..900&display=swap');

body {
    font-family: "Libre Franklin", sans-serif;
}/* Footer Styles */
/* Footer Section */
/* Footer Section */
.footer-section {
    background: #1C2B33;
    padding: 40px 20px;
    position: relative;
  }

  /* Footer Container */
  .footer-section .container {
    max-width: 1800px;
    margin: auto;
  }

  /* Footer Columns */
  .footer-section .footer-cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the columns */
    align-items: center; /* Align items vertically */
    gap: 20px;
  }

  .footer-section .footer-col {
    flex: 1;
    min-width: 250px;
    /* Center text within columns */
  }

  .footer-section .footer-col ul {
    list-style: none;
    padding: 0;
  }

  .footer-section .footer-col ul li {
    margin-bottom: 10px;
    padding: 15px;
  }

  .footer-section  .footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-section .footer-col ul li a:hover {
    color: #ffc107;
  }

  .footer-section .footer-col h4 {
    color: white;
    position: relative;
    padding-bottom: 0px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.86); /* Full width border */
  }

  /* Highlighted text bottom */
  .footer-section .footer-col h4 .highlight {
    color: white;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    z-index: 1;
  }

  .footer-section  .footer-col h4 .highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%; /* Only underlines the text */
    height: 2px;
    background: #ffcc00; /* Highlight color */
    z-index: 2;
  }

  .footer-section  .footer-col p {
    color: white;
    font-size: 14px; /* Increased font size */
    max-width: 450px;
  }

  .footer-section .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;

  }

  .footer-section .social-icons a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
  }

  .footer-section .social-icons a img:hover {
    transform: scale(1.1);
  }

  .footer-section .email-input-container {

    display: flex;
    align-items: left;
    width: 100%;
    max-width: 500px;
    border: 1px solid #ccc;
    overflow: hidden;
    margin: 20px auto; /* Center the email input container */
  }

  .footer-section .email-input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #999;
  }

  .footer-section .email-btn {
    background: #555;
    padding: 12px;
    border: none;
    display: flex;
    align-items: left;
    justify-content: left;
    cursor: pointer;
    max-width: 70px;
  }

  .footer-section .email-btn img {
    width: 20px;
    height: 20px;
  }

  .footer-section .email-btn button {
    width: 100%;
    padding: 10px;
    background: #ffc107;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }

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

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

  /* Footer Bottom Section */
  .footer-section .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center; /* Center the footer bottom content */
    padding: 15px 0;
  }

  .footer-section .footer-bottom img {
    margin-top: -10px;
    width: 100px;
    display: block;
    justify-content: center;
  }

  .footer-section  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the footer links */
    flex: 2;
  }

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

  .footer-section  .footer-links ul li {
    margin-bottom: 10px;
  }

  .footer-section  .footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
  }

  /* HR Separator */
  .hr-line {
    border: 0;
    height: 2px;
    background: #fff; /* Change the color to white */
    color: white; /* Ensure the color is white */
    margin: 20px 0;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .footer-section  .footer-cols,
    .footer-section  .footer-bottom {
      flex-direction: column;
      text-align: center;
    }

    .footer-section  .footer-links {
      flex-direction: column;
      width: 100%;
    }

    .footer-section  .footer-links ul {
      margin: 10px 0;
    }

    .footer-section .bottom-left img {
      margin-bottom: 15px;
    }
  }
