/* ============card-1================= */

  .complaint-form-wrapper {
            background: #ffffff;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
            border-top: 6px solid #0056b3;
        }

        .form-control {
            border: 2px solid #e9ecef;
            padding: 14px;
            border-radius: 10px;
            transition: 0.3s;
        }

        .form-control:focus {
            border-color: #0056b3;
            box-shadow: none;
        }

        .btn-primary {
            background: #0056b3;
            font-weight: bold;
            border-radius: 10px;
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary:hover {
            background: #004494;
            transform: translateY(-3px);
        }

        /* ===============card-2======================== */
         .gap {
        padding: 80px 0;
      }

      .contact-container {
        background: #68696624;
        padding: 60px 40px;
        border-radius: 40px;
        color: #fff;
      }

      .form-wrapper {
        position: relative;
        padding: 2px;
        border-radius: 30px;
        background: linear-gradient(45deg, #ff0055, #00ffcc, #ff0055);
        background-size: 400%;
        animation: glowing 15s linear infinite;
      }

      @keyframes glowing {
        0% {
          background-position: 0 0;
        }

        50% {
          background-position: 400% 0;
        }

        100% {
          background-position: 0 0;
        }
      }

      .glass-form {
        background: #0d0d10;
        padding: 40px;
        border-radius: 28px;
      }

      .form-input {
        width: 100%;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 18px 20px;
        border-radius: 15px;
        color: #fff;
        margin-bottom: 20px;
      }

      .submit-btn {
        width: 100%;
        padding: 18px;
        border: none;
        border-radius: 15px;
        background: #2b4b44;
        color: #fff;
        font-weight: 800;
        text-transform: uppercase;
        cursor: pointer;
      }

      .contact-info {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 35px;
        padding: 20px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.05);
      }

      .contact-info i {
        background: rgba(0, 255, 204, 0.1);
        padding: 15px;
        border-radius: 15px;
        font-size: 20px;
        color: #00ffcc;
      }

      .contact-info h4 {
        color: #fff;
        margin-bottom: 5px;
        font-size: 16px;
      }

      .contact-info p {
        margin: 0;
        color: #ccc;
        font-size: 14px;
      }