/* Default: Show desktop footer, hide mobile footer */

.mobile-footer {
  display: none;
}

/* On mobile: hide desktop footer, show mobile footer */
@media (max-width: 768px) {
  .footenavigation {
    display: none;
  }
.footer-copyright{
   display: none; 
}
  .mobile-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #0f0f1b;
    color: #00ffe7;
    font-family: 'Courier New', monospace;
    padding: 20px;
    gap: 10px;
  }
  .mobile-footer .social-icons a {
    color: #00ffe7;
    margin: 0 10px;
    font-size: 1.2rem;
  }
    .mobile-footer .mobile-links a {
    color: #00ffe7;
    margin: 5px 0;
    text-decoration: none;
  }
}


  .mobile-footer .footer-logo {
    text-align: center;
  }

  .mobile-footer .footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #00ffe7;
    box-shadow: 0 0 10px #00ffe7;
  }

  .mobile-footer .footer-logo p {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    color: #00ffe7;
  }

  .footer-accordion {
    width: 100%;
  }

  .accordion-toggle {
    width: 100%;
    padding: 12px 16px;
    background: #121225;
    color: #00ffe7;
    text-align: left;
    border: 1px solid #00ffe7;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 5px;
    transition: background 0.3s;
    position: relative;
  }

  .accordion-toggle::after {
    content: '+';
    float: right;
    font-size: 20px;
    color: #00ffe7;
  }

  .accordion-toggle.active::after {
    content: '-';
  }

  .accordion-toggle:hover {
    background: #1e1e2e;
    box-shadow: 0 0 8px #00ffe7;
  }

  .accordion-panel {
    max-height: 0;
    overflow: hidden;
    background: #1a1a2f;
    transition: max-height 0.3s ease-out;
    border-left: 2px solid #00ffe7;
    padding-left: 14px;
  }

  .accordion-panel a {
    display: block;
    padding: 8px 0;
    color: #bff;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px dashed #222;
  }

  .accordion-panel.footer-social {
    display: flex;
    gap: 12px;
    padding: 12px;
    justify-content: center;
  }

  .accordion-panel.footer-social a {
    font-size: 20px;
    color: #00ffe7;
  }

  .footer-copy {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #aaa;
  }
}
