.custom-footer {
    background: linear-gradient(to right, #001848, #0000ff, #29b6f6);
    color: #fff;
    border-top: 1px solid #ffffff55;
    font-size: 0.9rem;
  }

  .footer-logo {
    height: 35px;
    width: auto;
  }

  .footer-brand-text {
    font-weight: 600;
    font-size: 1.2rem;
  }

  .footer-text a {
    color: #fff;
    text-decoration: underline;
  }

  .footer-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 12px;
    transition: color 0.3s;
  }

  .footer-links a:hover {
    color: #90caf9;
  }

  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    color: #fff;
    margin-left: 5px;
    transition: all 0.3s ease;
  }

  .footer-social a:hover {
    background: #fff;
    color: #000;
  }

  body.dark-mode .custom-footer {
    background: linear-gradient(to right, #0a0a0a, #111122, #1a73e8);
  }