
    .footer {
      background: linear-gradient(135deg, #001f3f, #003366);
      color: #fff;
      padding: 60px 0 20px;
      font-family: "Poppins", sans-serif;
    }

    .footer .footer-logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
    }

    .footer p {
      color: #d0d8e0;
      font-size: 0.95rem;
      margin-top: 15px;
      line-height: 1.7;
    }

    .footer h5 {
      font-weight: 600;
      color: #fff;
      margin-bottom: 20px;
      position: relative;
    }

    .footer h5::after {
      content: "";
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 2px;
      background: #00c6ff;
      border-radius: 10px;
    }

    .footer a {
      color: #d0d8e0;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      transition: all 0.3s;
    }

    .footer a:hover {
      color: #00c6ff;
      padding-left: 5px;
    }

    .social-icons a {
      display: inline-block;
      margin-right: 10px;
      font-size: 1.3rem;
      color: #fff;
      background: #0056b3;
      width: 36px;
      height: 36px;
      line-height: 36px;
      text-align: center;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      background: #00c6ff;
      color: #001f3f;
      transform: translateY(-3px);
    }

    .footer-bottom {
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.2);
      padding-top: 15px;
      margin-top: 40px;
      color: #aab4c4;
      font-size: 0.9rem;
    }

    @media (max-width: 767px) {
      .footer {
        text-align: center;
      }
      .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
      }
    }