/* Footer.css */

.footer {
    background-color: #232F3E;
    color: white;
    font-size: 14px;
    width: 100%;
  }

  .all-rights{
    color : white;
    text-align: center;
    padding: 20px;
  }

  .all-rights a {
    color : white;
    text-decoration: none;
  }
  
  .footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    border-bottom: 1px solid #3a4553;
  }
  
  .footer-section h3 {
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .footer-section a {
    display: block;
    color: #ccc;
    margin-bottom: 8px;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    text-decoration: underline;
  }
  
  .blue-link {
    color: #3796ec;
  }
  
  .footer-middle {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-bottom: 1px solid #3a4553;
  }
  
  .footer-middle select,
  .footer-middle .country {
    background-color: #37475A;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
  }
  
  .logo {
    height: 24px;
  }
  
  .footer-bottom {
    background-color: #131A22;
    color: #ccc;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    padding: 30px 20px;
    font-size: 12px;
  }
  
  .footer-mini-title {
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
  }