/* ------------------------------
   footer.css
   Footer Page
------------------------------ */
/* ======= Footer Section ======= */
    footer {
      background: #0f172a;
      color: #fff;
      padding: 20px 10%;
      font-family: 'Segoe UI', sans-serif;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 1px;
      margin-bottom: 20px;
    }

    .footer-section h4 {
      color: var(--accent, #00c6a7);
      margin-bottom: 15px;
      font-size: 1rem;
      text-transform: uppercase;
    }

    .footer-section ul {
      list-style: none;
      padding: 0;
    }

    .footer-section ul li {
      margin-bottom: 8px;
    }

    .footer-section ul li a {
      color: #cbd5e1;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-section ul li a:hover {
      color: var(--primary, #0096ff);
    }

    .partner-logos {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .partner-link img {
      width: 50px;
      height: 50px;
      object-fit: contain;
      background: #fff;
      border-radius: 6px;
      padding: 5px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .partner-link:hover img {
      transform: scale(1.08);
      box-shadow: 0 0 10px rgba(0, 150, 255, 0.4);
    }

    .footer-bottom {
      text-align: center;
      border-top: 1px solid #334155; /* keep line above copyright */
      padding-top: 10px;
      font-size: 0.9rem;
      color: #94a3b8;
    }

    .footer-tagline {
      text-align: center;
      font-size: 0.75rem;
      color: var(--accent);
      margin-top: 5px;
      text-transform: uppercase;
    }

    .footer-link {
      color: #cbd5e1;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
    }

    .footer-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0%;
      height: 2px;
      background: var(--primary, #0096ff);
      transition: width 0.3s ease;
    }

    .footer-link:hover {
      color: var(--primary, #0096ff);
    }

    .footer-link:hover::after {
      width: 100%;
    }