/* Footer Section */
.footer-section {
    background-color: #111;
    color: white;
    padding: 50px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-left {
    text-align: left;
  }
  
  .footer-right {
    text-align: right;
  }
  
  .social-links {
    margin-top: 10px;
  }
  
  .social-icon {
    margin-right: 20px;
    font-size: 1.5rem;
    color: #ff7a00;
    transition: color 0.3s ease;
  }
  
  .social-icon:hover {
    color: #e65c00;
  }
  
  .footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .footer-links li {
    display: inline-block;
  }
  
  .footer-links a {
    color: #ff7a00;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #e65c00;
  }
  
  /* ScrollTrigger animation */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  }
  