/* Footer-start */


.modern-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
    font-family: 'Arial', sans-serif;
    margin-top: 10px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
  }
  
  .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #f0f0f0;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #007bff;
  }
  
  .footer-column p {
    line-height: 1.6;
    color: #b0b0b0;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
  }
  
  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    background-color: #007bff;
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .footer-bottom p {
    margin: 0;
    color: #b0b0b0;
  }
  
  .footer-nav {
    display: flex;
    gap: 1.5rem;
  }
  
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-nav a:hover {
    color: #007bff;
  }
  
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
  
    .footer-nav {
      justify-content: center;
    }
  }

/* footer-end */