 /* Footer Base Styles */
  .projexel-footer {
    background-color: #1a2a36;
    color: #e0e0e0;
    padding: 4rem 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    position: relative;
  }

  .footer-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* Footer Grid Layout */
  .footer-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
  }

  /* Company Info Section */
  .footer-brand-llogo {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    /* filter: brightness(0) invert(1); */
    transition: transform 0.3s ease;
  }

  .footer-brand-logo:hover {
    transform: scale(1.05);
  }

  .footer-company-description {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
  }

  /* Newsletter Section */
  .footer-section-title {
    color: #ee2b2f;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }

  .footer-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color:#ee2b2f;
  }

  .footer-newsletter-text {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 1.2rem;
  }

  .footer-subscription-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-email-input {
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    background-color: #2a3a46;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }

  .footer-email-input:focus {
    outline: none;
    box-shadow: #ee2b2f;
    background-color: #314150;
  }

  .footer-subscribe-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color:#ee2b2f;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .footer-subscribe-btn:hover {
    background-color:#ee2b2f;
    transform: translateY(-2px);
  }

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

  .footer-nav-item {
    margin-bottom: 0.8rem;
  }

  .footer-nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }

  .footer-nav-link:hover {
    color: #ee2b2f;
    padding-left: 5px;
  }

  .footer-link-icon {
    width: 20px;
    text-align: center;
    color:#ee2b2f;
  }

  /* Contact Info Section */
  .footer-contact-method {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }

  .footer-contact-icon {
    color:#ee2b2f;
    width: 20px;
    text-align: center;
  }

  .footer-contact-method a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-contact-method a:hover {
    color: #ee2b2f;
  }

  .footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #2a3a46;
    color: #e0e0e0;
    transition: all 0.3s ease;
  }

  .footer-social-link:hover {
    background-color:#ee2b2f;
    color: white;
    transform: translateY(-3px);
  }

  /* Footer Bottom Bar */
  .footer-bottom-bar {
    border-top: 1px solid #2a3a46;
    padding: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .footer-copyright {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0;
  }

  .footer-legal-links {
    display: flex;
    gap: 1.5rem;
  }

  .footer-legal-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .footer-legal-link:hover {
    color: #ee2b2f;
  }

  .footer-scroll-top {
    background-color: #2a3a46;
    color: #e0e0e0;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }

  .footer-scroll-top:hover {
    background-color:#ee2b2f;
    color: white;
  }

  /* Responsive Styles */
  @media (max-width: 992px) {
    .footer-grid-layout {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
    }
  }

  @media (max-width: 768px) {
    .projexel-footer {
      padding: 3rem 0 0;
    }

    .footer-container {
      padding: 0 1.5rem;
    }

    .footer-grid-layout {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .footer-brand-logo {
      width: 160px;
    }

    .footer-bottom-bar {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.5rem 0;
    }

    .footer-legal-links {
      order: 1;
      margin-top: 0.5rem;
    }

    .footer-scroll-top {
      margin-top: 1rem;
    }
  }

  @media (max-width: 480px) {
    .footer-container {
      padding: 0 1rem;
    }

    .footer-legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-subscribe-btn {
      padding: 0.8rem;
    }

    .footer-subscribe-btn span {
      display: none;
    }

    .footer-subscribe-btn i {
      margin: 0;
    }
  }

  /* Responsive Styles */
@media (max-width: 768px) {
  .projexel-footer {
    padding: 3rem 0 0;
  }

  .footer-container {
    padding: 0 1.5rem;
  }

  .footer-grid-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand-logo {
    width: 160px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .footer-copyright {
    order: 3; /* This ensures copyright appears last */
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
  }

  .footer-legal-links {
    order: 1;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .footer-scroll-top {
    order: 2;
    margin: 0.5rem 0;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 1rem;
  }

  .footer-legal-links {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-subscribe-btn {
    padding: 0.8rem;
  }

  .footer-subscribe-btn span {
    display: none;
  }

  .footer-subscribe-btn i {
    margin: 0;
  }
}